Browse the installed skill catalog — filter by category or keyword, see what each slash command does.
/skills [category|keyword]
/-commands it added/skills
What you’ll see: every user-invocable skill installed in this project, grouped by category, each with its one-line description — generated live from the manifest, so it always matches what’s actually installed.
/skills # full catalog, grouped by category
/skills quality # skills matching "quality" in name, description, or category (currently: the Quality category)
/skills deploy # keyword match across name + description (deploy, deploy-ios…)
/skills consulting # everything in the consulting bundle
Example output for /skills quality:
## Skills catalog (2 skills, filter: 'quality')
### Quality
- `/qa` — Run QA checks.
- `/qa-learn` — Review QA knowledge base stats, prune stale entries.
| Argument | Values | Default | What it does |
|---|---|---|---|
| filter | category name or keyword | none (show all) | Narrows the catalog: matches if the filter string appears anywhere in a skill’s name, description, or category name — a single combined search, not separate strategies per field. Results are still grouped by each skill’s real install category, so a match on a different field can pull in a skill from a category you didn’t expect. |
portable.manifest (the source of truth) and each skill’s frontmatter, so the catalog can never drift from what is installed.user-invocable: false (internal helpers other skills use).| Problem | Fix |
|---|---|
skills catalog: manifest not found |
The toolkit isn’t installed where expected; run ~/.claude-agents/install.sh --status to confirm the install path |
| A skill you expect is missing | It may be user-invocable: false (internal) or not installed in this project’s bundle — check with /skills unfiltered, or install the bundle that contains it |
| Empty result for a real category | Category names are lowercase (e.g. quality, operations) and come from install.sh’s install categories/bundles, not from the skill’s own frontmatter — try /skills unfiltered to see valid category names, or use a keyword instead |