.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/skills/find-skills
home/skills/vercel-labs/skills/find-skills
vercel-labs avatar

find-skills

byvercel-labs· 154 skills

Installs

2.7M

Stars

27k

Forks

2.3k

Category

AI Agents & MCP

View on GitHub

TL;DR

Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.

How to install find-skills?

vercel-labs/skills/find-skills
$npx -y skills add vercel-labs/skills --skill find-skills

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Use this skill

Run `npx skills use "https://github.com/vercel-labs/skills" --skill "vercel-labs/skills/find-skills"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.

Use the whole pack

Use the skills in "https://github.com/vercel-labs/skills" that are relevant to the current task. Run `npx skills add "https://github.com/vercel-labs/skills"` and select the relevant skills, then follow their instructions.

Files · 1

View on GitHub
SKILL.md
1# Find Skills
2 
3This skill helps you discover and install skills from the open agent skills ecosystem.
4 
5## When to Use This Skill
6 
7Use this skill when the user:
8 
9- Asks "how do I do X" where X might be a common task with an existing skill
10- Says "find a skill for X" or "is there a skill for X"
11- Asks "can you do X" where X is a specialized capability
12- Expresses interest in extending agent capabilities
13- Wants to search for tools, templates, or workflows
14- Mentions they wish they had help with a specific domain (design, testing, deployment, etc.)
15 
16## What is the Skills CLI?
17 
18The Skills CLI (`npx skills`) is the package manager for the open agent skills ecosystem. Skills are modular packages that extend agent capabilities with specialized knowledge, workflows, and tools.
19 
20**Key commands:**
21 
22- `npx skills find [query] [--owner <owner>]` - Search for skills interactively or by keyword, optionally scoped to a GitHub owner
23- `npx skills add <package>` - Install a skill from GitHub or other sources
24- `npx skills update` - Update all installed skills
25 
26**Browse skills at:** https://skills.sh/
27 
28## How to Help Users Find Skills
29 
30### Step 1: Understand What They Need
31 
32When a user asks for help with something, identify:
33 
341. The domain (e.g., React, testing, design, deployment)
352. The specific task (e.g., writing tests, creating animations, reviewing PRs)
363. Whether this is a common enough task that a skill likely exists
37 
38### Step 2: Check the Leaderboard First
39 
40Before running a CLI search, check the [skills.sh leaderboard](https://skills.sh/) to see if a well-known skill already exists for the domain. The leaderboard ranks skills by total installs, surfacing the most popular and battle-tested options.
41 
42For example, top skills for web development include:
43- `vercel-labs/agent-skills` — React, Next.js, web design (100K+ installs each)
44- `anthropics/skills` — Frontend design, document processing (100K+ installs)
45 
46### Step 3: Search for Skills
47 
48If the leaderboard doesn't cover the user's need, run the find command:
49 
50```bash
51npx skills find [query] [--owner <owner>]
52```
53 
54For example:
55 
56- User asks "how do I make my React app faster?" → `npx skills find react performance`
57- User asks "can you help me with PR reviews?" → `npx skills find pr review`
58- User asks "I need to create a changelog" → `npx skills find changelog`
59 
60### Step 4: Verify Quality Before Recommending
61 
62**Do not recommend a skill based solely on search results.** Always verify:
63 
641. **Install count** — Prefer skills with 1K+ installs. Be cautious with anything under 100.
652. **Source reputation** — Official sources (`vercel-labs`, `anthropics`, `microsoft`) are more trustworthy than unknown authors.
663. **GitHub stars** — Check the source repository. A skill from a repo with <100 stars should be treated with skepticism.
67 
68### Step 5: Present Options to the User
69 
70When you find relevant skills, present them to the user with:
71 
721. The skill name and what it does
732. The install count and source
743. The install command they can run
754. A link to learn more at skills.sh
76 
77Example response:
78 
79```
80I found a skill that might help! The "react-best-practices" skill provides
81React and Next.js performance optimization guidelines from Vercel Engineering.
82(185K installs)
83 
84To install it:
85npx skills add vercel-labs/agent-skills@react-best-practices
86 
87Learn more: https://skills.sh/vercel-labs/agent-skills/react-best-practices
88```
89 
90### Step 6: Offer to Install
91 
92If the user wants to proceed, you can install the skill for them:
93 
94```bash
95npx skills add <owner/repo@skill> -g -y
96```
97 
98The `-g` flag installs globally (user-level) and `-y` skips confirmation prompts.
99 
100## Common Skill Categories
101 
102When searching, consider these common categories:
103 
104| Category | Example Queries |
105| --------------- | ---------------------------------------- |
106| Web Development | react, nextjs, typescript, css, tailwind |
107| Testing | testing, jest, playwright, e2e |
108| DevOps | deploy, docker, kubernetes, ci-cd |
109| Documentation | docs, readme, changelog, api-docs |
110| Code Quality | review, lint, refactor, best-practices |
111| Design | ui, ux, design-system, accessibility |
112| Productivity | workflow, automation, git |
113 
114## Tips for Effective Searches
115 
1161. **Use specific keywords**: "react testing" is better than just "testing"
1172. **Try alternative terms**: If "deploy" doesn't work, try "deployment" or "ci-cd"
1183. **Check popular sources**: Many skills come from `vercel-labs/agent-skills` or `ComposioHQ/awesome-claude-skills`
119 
120## When No Skills Are Found
121 
122If no relevant skills exist:
123 
1241. Acknowledge that no existing skill was found
1252. Offer to help with the task directly using your general capabilities
1263. Suggest the user could create their own skill with `npx skills init`
127 
128Example:
129 
130```
131I searched for skills related to "xyz" but didn't find any matches.
132I can still help you with this task directly! Would you like me to proceed?
133 
134If this is something you do often, you could create your own skill:
135npx skills init my-xyz-skill
136```

Security

Review

  • Gen Agent Trust Hubpass
  • Socketpass
  • Snykwarn
  • Runlayerpass
  • ZeroLeakspass

Preview

vercel-labs/skillsvercel-labs/skills

$ npx -y skills add vercel-labs/skills --skill find-skills

▸ installing to .claude/skills…

✓ find-skills ready

Repovercel-labs/skills
TypeSkills
CategoryAI Agents & MCP
ForDeveloper
UpdatedJul 2026
License—
First seenJul 26, 2026

Tags

Skill

Related

6 picks
Type
  1. anthropics avatarmcp-builderGuide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools.SkillsJul 202695k164k
  2. google avatargoogle-agents-cli-adk-codeThis skill should be used when the user wants to "write agent code", "build an agent with ADK", "add a tool", "create a callback", "define an agent", "use…SkillsJul 202666k5.4k
  3. google avatargoogle-agents-cli-workflowThis skill should be used when the user wants to "develop an agent", "build an agent using ADK", "run the agent locally", "debug agent code", "test an agent",…SkillsJul 202665k5.4k
  4. google avatargoogle-agents-cli-evalThis skill should be used when the user wants to "run an evaluation", "evaluate my ADK agent", "write an eval dataset", "analyze eval failures", "compare eval…SkillsJul 202665k5.4k
  5. google avatargoogle-agents-cli-scaffoldThis skill should be used when the user wants to "create an agent project", "start a new ADK project", "build me a new agent", "add CI/CD to my project", "add…SkillsJul 202665k5.4k
  6. google avatargoogle-agents-cli-observabilityThis skill should be used when the user wants to "set up tracing", "monitor my ADK agent", "configure logging", "add observability", "debug production…SkillsJul 202665k5.4k