find-skills
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
Chinesefind-skills — 技能发现与安装
find-skills — Skill Discovery & Installation
43 COLLEGE 凯寓 (KAIYU) 出品 | v1.0
从开放的 agent 技能生态中发现和安装技能。依赖 Node.js( 命令),未安装时提示用户先装 Node.js。
npxProduced by 43 COLLEGE KAIYU | v1.0
Discover and install skills from the open agent skill ecosystem. Depends on Node.js (the command); prompt users to install Node.js first if it's not installed.
npx何时使用
When to Use
- 用户问"怎么做 X",而 X 可能有现成的技能
- 用户说"找一个做 X 的技能"
- 用户想扩展 agent 的能力
- 用户想搜索工具、模板或工作流
- Users ask "how to do X" where there might be an existing skill for X
- Users say "find a skill that does X"
- Users want to expand an agent's capabilities
- Users want to search for tools, templates, or workflows
核心命令
Core Commands
bash
npx skills find [query] # 搜索技能
npx skills add <package> # 安装技能(-g 全局,-y 跳过确认)
npx skills check # 检查更新
npx skills update # 更新所有已安装技能浏览技能:https://skills.sh/
bash
npx skills find [query] # Search for skills
npx skills add <package> # Install a skill (-g for global, -y to skip confirmation)
npx skills check # Check for updates
npx skills update # Update all installed skillsBrowse Skills: https://skills.sh/
执行步骤
Execution Steps
第 1 步:理解需求
Step 1: Understand Requirements
识别用户需要的领域和具体任务。
Identify the domain and specific task the user needs.
第 2 步:先查排行榜
Step 2: Check the Leaderboard First
在运行 CLI 搜索前,先查看 skills.sh 排行榜 看是否已有知名技能。排行榜按安装量排名,展示最受欢迎的选项。
热门来源:
- — React、Next.js、Web 设计(10万+ 安装量)
vercel-labs/agent-skills - — 前端设计、文档处理(10万+ 安装量)
anthropics/skills
Before running a CLI search, check the skills.sh Leaderboard to see if there are already well-known skills. The leaderboard is ranked by installation count, showing the most popular options.
Popular Sources:
- — React, Next.js, Web Design (100k+ installations)
vercel-labs/agent-skills - — Frontend Design, Document Processing (100k+ installations)
anthropics/skills
第 3 步:搜索技能
Step 3: Search for Skills
bash
npx skills find react performance
npx skills find pr review
npx skills find changelogbash
npx skills find react performance
npx skills find pr review
npx skills find changelog第 4 步:验证质量再推荐
Step 4: Verify Quality Before Recommending
不要仅凭搜索结果就推荐。 验证:
- 安装量 — 优先 1K+,低于 100 要谨慎
- 来源信誉 — 官方来源(、
vercel-labs、anthropics)更可信microsoft - GitHub stars — 源仓库 star 不足 100 需持怀疑态度
Don't recommend based solely on search results. Verify:
- Installation Count — Prioritize skills with 1K+ installations; be cautious with those under 100
- Source Credibility — Official sources (,
vercel-labs,anthropics) are more trustworthymicrosoft - GitHub Stars — Be skeptical of source repositories with fewer than 100 stars
第 5 步:展示选项
Step 5: Display Options
向用户展示技能名称、功能、安装量、安装命令和详情链接:
找到一个技能:"react-best-practices"
来自 Vercel 工程团队的 React 性能优化指南(18.5万安装量)
安装:npx skills add vercel-labs/agent-skills@react-best-practices -g -y
详情:https://skills.sh/vercel-labs/agent-skills/react-best-practicesShow users the skill name, functionality, installation count, installation command, and details link:
Found a skill: "react-best-practices"
React performance optimization guide from Vercel Engineering Team (185k installations)
Install: npx skills add vercel-labs/agent-skills@react-best-practices -g -y
Details: https://skills.sh/vercel-labs/agent-skills/react-best-practices第 6 步:协助安装
Step 6: Assist with Installation
用户确认后执行:
bash
npx skills add <owner/repo@skill> -g -yExecute the following after user confirmation:
bash
npx skills add <owner/repo@skill> -g -y搜索关键词参考
Search Keyword Reference
| 分类 | 关键词 |
|---|---|
| Web 开发 | react, nextjs, typescript, css, tailwind |
| 测试 | testing, jest, playwright, e2e |
| DevOps | deploy, docker, kubernetes, ci-cd |
| 文档 | docs, readme, changelog, api-docs |
| 代码质量 | review, lint, refactor, best-practices |
| 设计 | ui, ux, design-system, accessibility |
| 效率工具 | workflow, automation, git |
| Category | Keywords |
|---|---|
| Web Development | react, nextjs, typescript, css, tailwind |
| Testing | testing, jest, playwright, e2e |
| DevOps | deploy, docker, kubernetes, ci-cd |
| Documentation | docs, readme, changelog, api-docs |
| Code Quality | review, lint, refactor, best-practices |
| Design | ui, ux, design-system, accessibility |
| Productivity Tools | workflow, automation, git |
没有找到时
When No Skills Are Found
- 告知用户没有现成技能
- 提议用自身能力直接完成任务
- 建议创建自己的技能:
npx skills init my-skill
- Inform the user that there are no existing skills
- Offer to complete the task directly using your own capabilities
- Suggest creating their own skill:
npx skills init my-skill