get_available_skills
Discover all available AI skills by retrieving a list of skill names, descriptions, and paths. Use this tool to find which skills are accessible before requesting detailed information.
Instructions
Get an overview of all available skills.
This tool provides LLMs with a list of available skills and their use cases by parsing the frontmatter (YAML metadata) at the start of each SKILL.md file.
LLMs should rely on this tool to discover what skills are available before requesting detailed skill information.
Returns
list[dict[str, str]] List of skill metadata dictionaries, each containing: - name: The skill identifier (lowercase, hyphens only) - description: When and how to use this skill - path: Location of the skill directory
Examples
skills = get_available_skills() print(skills[0]["name"]) 'single-cell-rna-qc'
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |