Find Skills (Windows Version)
Helps users discover and install agent skills from the open ecosystem when they need new capabilities.
When to Use
Activate this skill when users:
- Ask "how do I do X" or "can you do X" for specialized tasks
- Request "find a skill for X"
- Want to extend agent capabilities in specific domains
- Use Chinese keywords to search (auto-translate to English)
Core Workflow
1. Handle Chinese Input
If user input contains Chinese, translate it to English first:
| Chinese |
English |
| 网页开发 |
web development |
| 测试 |
testing |
| 部署 |
deploy |
| 文档 |
documentation |
| 代码审查 |
code review |
| 设计 |
design |
| 工作流 |
workflow |
Example: User asks "找一个React测试的skill" → Search for "react testing"
2. Search for Skills
npx skills find [query]
Or in CMD:
npx skills find [query]
3. Present Results
For each result, provide:
4. Install if Requested
npx skills add <owner/repo@skill> -g -y
Common Search Categories
| Category |
Keywords |
| Web Dev |
react, nextjs, vue, angular, frontend |
| Testing |
jest, playwright, cypress, testing |
| DevOps |
deploy, docker, kubernetes, ci-cd |
| Documentation |
readme, changelog, docs |
| Code Quality |
review, lint, format |
| Design |
ui, accessibility, css |
| Productivity |
workflow, git, automation |
Search Optimization Strategy
Ranking Metrics
The skills.sh directory ranks skills by:
| View |
Description |
Use Case |
| All Time |
Total install count |
Find proven, stable skills |
| Trending (24h) |
Recent 24-hour activity |
Discover new popular skills |
| Hot |
Current trending |
Find what's popular right now |
Recommended Search Priority
- Prefer high-install skills - Skills with 10K+ installs are battle-tested
- Check trending for new solutions - Emerging skills may solve newer problems
- Prioritize verified sources -
vercel-labs/agent-skills is highly trusted
Top Popular Skills (Reference)
| Rank |
Skill |
Installs |
Use Case |
| 1 |
vercel-react-best-practices |
74.5K |
React development |
| 2 |
find-skills |
61.1K |
Discover skills |
| 3 |
web-design-guidelines |
56.5K |
Web design |
| 4 |
remotion-best-practices |
53.8K |
Video creation |
Search Tips
- Use specific keywords ("react testing" vs "testing")
- Combine domain + action ("nextjs deploy", "typescript lint")
- Check https://skills.sh/ for browsing by category and popularity
- Prefer skills from
vercel-labs - high quality, well-maintained
Tips
- If nothing found, offer direct help or suggest creating a custom skill:
npx skills init
Troubleshooting (Windows)
If npx is not recognized:
- Ensure Node.js is installed:
node --version
- Ensure npm is in PATH:
npm --version
- Try running in PowerShell as Administrator
Resources
1---2name: find-skills3description: 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. Supports Chinese input with auto-translation to English.4---56# Find Skills (Windows Version)78Helps users discover and install agent skills from the open ecosystem when they need new capabilities.910## When to Use1112Activate this skill when users:13- Ask "how do I do X" or "can you do X" for specialized tasks14- Request "find a skill for X"15- Want to extend agent capabilities in specific domains16- Use Chinese keywords to search (auto-translate to English)1718## Core Workflow1920### 1. Handle Chinese Input2122If user input contains Chinese, translate it to English first:2324| Chinese | English |25|---------|---------|26| 网页开发 | web development |27| 测试 | testing |28| 部署 | deploy |29| 文档 | documentation |30| 代码审查 | code review |31| 设计 | design |32| 工作流 | workflow |3334Example: User asks "找一个React测试的skill" → Search for "react testing"3536### 2. Search for Skills3738```powershell39npx skills find [query]40```4142Or in CMD:43```cmd44npx skills find [query]45```4647### 3. Present Results4849For each result, provide:50- Skill name and purpose51- Installation command52- Link to https://skills.sh/ for details5354### 4. Install if Requested5556```powershell57npx skills add <owner/repo@skill> -g -y58```5960## Common Search Categories6162| Category | Keywords |63|----------|----------|64| Web Dev | react, nextjs, vue, angular, frontend |65| Testing | jest, playwright, cypress, testing |66| DevOps | deploy, docker, kubernetes, ci-cd |67| Documentation | readme, changelog, docs |68| Code Quality | review, lint, format |69| Design | ui, accessibility, css |70| Productivity | workflow, git, automation |7172## Search Optimization Strategy7374### Ranking Metrics7576The skills.sh directory ranks skills by:7778| View | Description | Use Case |79|------|-------------|----------|80| **All Time** | Total install count | Find proven, stable skills |81| **Trending (24h)** | Recent 24-hour activity | Discover new popular skills |82| **Hot** | Current trending | Find what's popular right now |8384### Recommended Search Priority85861. **Prefer high-install skills** - Skills with 10K+ installs are battle-tested872. **Check trending for new solutions** - Emerging skills may solve newer problems883. **Prioritize verified sources** - `vercel-labs/agent-skills` is highly trusted8990### Top Popular Skills (Reference)9192| Rank | Skill | Installs | Use Case |93|------|-------|----------|----------|94| 1 | `vercel-react-best-practices` | 74.5K | React development |95| 2 | `find-skills` | 61.1K | Discover skills |96| 3 | `web-design-guidelines` | 56.5K | Web design |97| 4 | `remotion-best-practices` | 53.8K | Video creation |9899### Search Tips100101- **Use specific keywords** ("react testing" vs "testing")102- **Combine domain + action** ("nextjs deploy", "typescript lint")103- **Check https://skills.sh/** for browsing by category and popularity104- **Prefer skills from `vercel-labs`** - high quality, well-maintained105106## Tips107108- If nothing found, offer direct help or suggest creating a custom skill:109 ```powershell110 npx skills init111 ```112113## Troubleshooting (Windows)114115If `npx` is not recognized:1161. Ensure Node.js is installed: `node --version`1172. Ensure npm is in PATH: `npm --version`1183. Try running in PowerShell as Administrator119120## Resources121122- Browse all skills: https://skills.sh/123- Skills CLI documentation: `npx skills --help`