AgentStack
SKILL verified MIT Self-run

Banana Skill Finder

skill-treydong-banana-skills-banana-skill-finder · by TreyDong

>

No reviews yet
0 installs
20 views
0.0% view→install

Install

$ agentstack add skill-treydong-banana-skills-banana-skill-finder

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README — it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-treydong-banana-skills-banana-skill-finder)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming — see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps — measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Banana Skill Finder? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Banana Skill Finder

Proactively helps users discover and install relevant Claude skills when they encounter tasks that could benefit from specialized capabilities.

When to Use This Skill

Trigger automatically (without user request) when detecting:

  • 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

Important: This skill should trigger proactively. Don't wait for users to explicitly ask for skill recommendations.

Workflow

1. Analyze User Need

Identify:

  • 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

Use a three-tier strategy with automatic fallback:

Tier 1: SkillsMP API (Best - if configured)

# 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"

Benefits:

  • AI understands user intent, not just keywords
  • Access to 60,000+ curated skills
  • Best relevance and quality indicators

Tier 2: skills.sh WebFetch (Good - always works)

# 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)

Benefits:

  • 200+ high-quality curated skills
  • No authentication needed
  • Ranked by install count
  • Shows trending skills

Tier 3: GitHub API (Fallback - may have limits)

curl -X GET "https://api.github.com/search/code?q={keywords}+SKILL.md+language:markdown" \
  -H "Accept: application/vnd.github.v3+json"

Note: Rate limited (60/hour unauthenticated), use only as last resort.

Optional: Check Local Installed Skills

ls ~/.claude/skills/

Check if user already has relevant skills installed but hasn't used them.

Recommendation Order: Try Tier 1 → Tier 2 → Tier 3. Stop when you find good matches.

3. Rank by Relevance

Score each found skill based on:

  • Keyword match with user's need (most important)
  • Functionality alignment
  • Quality indicators (stars, recent activity)
  • Specificity vs generality

Select the 1-3 most relevant skills. Quality over quantity.

4. Present Recommendations

Format recommendations as:

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

When user approves, install using Vercel's skills CLI:

npx skills add /

Examples:

npx skills add vercel-labs/agent-skills
npx skills add anthropics/skills

This command:

  • Downloads the skill from GitHub
  • Installs to ~/.claude/skills/
  • Works with Claude Code, Cursor, Windsurf, and other agents
  • Tracks installation via anonymous telemetry (leaderboard)

Confirm installation success and explain how the skill will help.

Key Principles

  1. Proactive, Not Reactive: Trigger automatically when relevant, don't wait to be asked
  1. Quality Over Quantity: Recommend only 1-3 best matches, not a long list
  1. 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
  1. Explain Relevance: Always explain why each skill matches their need
  1. Easy Installation: Use npx skills add owner/repo for one-command installation
  1. API Key Recommended but Optional: Best results with SkillsMP API key, but skills.sh fallback works well

Examples

User says: "I need to extract text from a PDF file" → Trigger skill-finder, search for PDF processing skills, recommend pdf-editor or similar

User says: "Help me review this React component" → Trigger skill-finder, search for React/code-review skills, recommend react-best-practices from Vercel

User says: "I'm deploying to AWS" → Trigger skill-finder, search for AWS/deployment skills, recommend cloud-deploy or aws-helper

User says: "How do I query this BigQuery table?" → Trigger skill-finder, search for BigQuery/SQL skills, recommend bigquery or data-analysis skills

Additional Resources

For detailed information:

  • [references/apiconfig.md](references/apiconfig.md) - How to set up SkillsMP API key
  • [references/skillsources.md](references/skillsources.md) - Skill sources, categories, and search strategies

Setup Recommendations

For best results, suggest users configure SkillsMP API key:

  1. Visit https://skillsmp.com/docs/api
  2. Generate API key
  3. Set environment variable: export SKILLSMP_API_KEY="sk_live_..."

This enables AI semantic search (much better than keyword matching). Without it, the skill automatically falls back to skills.sh leaderboard search, which still works well for most cases.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.