| name | find-skills |
| description | Helps users discover and install agent skills. Use this when the user asks "how do I do X", "find a skill for X", or wants to extend agent capabilities. |
| allowed-tools | ["run_command","mcp_firecrawl_firecrawl_search","read_url_content"] |
find-skills
This skill helps you discover and install skills from the open agent skills ecosystem and our internal registry.
Phase 1: Understand Requirements
Identify the domain and specific task the user needs help with (e.g., React performance, testing, design).
Phase 2: Internal Lookup
Check our local registry first to see if we already have a skill for this.
- Tool:
view_file on hooks/keyword-map.json
- Action: Search for keywords related to the user's request.
Phase 3: External Discovery
If not found internally, search the wider ecosystem.
- Browse: Check skills.sh for top-rated skills.
- Search: Run
npx skills find [query] to find matching packages.
- Verify: Check install counts and source reputation (prefer
vercel-labs, anthropics, microsoft).
Phase 4: Recommendation
Present options to the user with:
- Skill name and description.
- Install count and source.
- The install command:
npx skills add <package>.
Phase 5: Implementation
If the user approves, install the skill:
npx skills add <owner/repo@skill> -g -y
References