banana-skill-finder
Automatically discover and recommend relevant Claude skills when users encounter tasks that could benefit from specialized capabilities. Use this skill proactively when detecting any of these patterns: (1) User mentions working with specific file formats (PDF, DOCX, Excel, images, etc.), (2) User describes repetitive or specialized tasks (data analysis, code review, deployment, testing, document processing), (3) User asks if there's a tool or capability for something, (4) User struggles with domain-specific work (React development, SQL queries, DevOps, content writing), (5) User mentions needing best practices or patterns for a technology, (6) Any situation where a specialized skill could save time or improve quality. Search using SkillsMP API (if configured), skills.sh leaderboard, or GitHub as fallback. Recommend 1-3 most relevant skills and offer to install via npx skills add.
NPX Install
npx skill4agent add treydong/banana-skills banana-skill-finderTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Banana Skill Finder
When to Use This Skill
- Working with specific file formats or technologies
- Describing repetitive or specialized tasks
- Asking "is there a skill/tool for..." or similar
- Struggling with domain-specific work
- Any task where a specialized skill could help
Workflow
1. Analyze User Need
- Core task: What is the user trying to accomplish?
- Domain: What category does this fall into? (development, documents, data, web, devops, content, etc.)
- Keywords: Extract 2-4 relevant search terms
2. Search for Skills
# Check for API key
echo $SKILLSMP_API_KEY
# If exists, use AI semantic search
curl -X GET "https://skillsmp.com/api/v1/skills/ai-search?q={natural_language_query}" \
-H "Authorization: Bearer $SKILLSMP_API_KEY"- AI understands user intent, not just keywords
- Access to 60,000+ curated skills
- Best relevance and quality indicators
# Try search with query parameter
Use WebFetch: https://skills.sh/?q={keywords}
# Or browse leaderboard
Use WebFetch: https://skills.sh # All-time popular
Use WebFetch: https://skills.sh/trending # Trending (24h)- 200+ high-quality curated skills
- No authentication needed
- Ranked by install count
- Shows trending skills
curl -X GET "https://api.github.com/search/code?q={keywords}+SKILL.md+language:markdown" \
-H "Accept: application/vnd.github.v3+json"ls ~/.claude/skills/3. Rank by Relevance
- Keyword match with user's need (most important)
- Functionality alignment
- Quality indicators (stars, recent activity)
- Specificity vs generality
4. Present Recommendations
I found [N] skill(s) that could help:
**1. [Skill Name]** - [One-line description]
Source: [SkillsMP/GitHub/Vercel]
Repository: [owner/repo]
Why relevant: [Brief explanation]
Install: `npx skills add [owner]/[repo]`
[Repeat for 2-3 skills max]
Would you like me to install any of these?5. Install if Approved
npx skills add <owner>/<repo>npx skills add vercel-labs/agent-skills
npx skills add anthropics/skills- Downloads the skill from GitHub
- Installs to
~/.claude/skills/ - Works with Claude Code, Cursor, Windsurf, and other agents
- Tracks installation via anonymous telemetry (leaderboard)
Key Principles
-
Proactive, Not Reactive: Trigger automatically when relevant, don't wait to be asked
-
Quality Over Quantity: Recommend only 1-3 best matches, not a long list
-
Smart Three-Tier Search:
- Tier 1: SkillsMP AI search (best, if configured)
- Tier 2: skills.sh leaderboard (good, always works)
- Tier 3: GitHub API (fallback, rate limited)
- Stop when you find good matches
-
Explain Relevance: Always explain why each skill matches their need
-
Easy Installation: Usefor one-command installation
npx skills add owner/repo -
API Key Recommended but Optional: Best results with SkillsMP API key, but skills.sh fallback works well
Examples
Additional Resources
- references/api_config.md - How to set up SkillsMP API key
- references/skill_sources.md - Skill sources, categories, and search strategies
Setup Recommendations
- Visit https://skillsmp.com/docs/api
- Generate API key
- Set environment variable:
export SKILLSMP_API_KEY="sk_live_..."