find-skills
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseFind Skills
查找技能
Discover and install third-party agent skills from the open Agent Skills ecosystem powered by skills.sh.
从由skills.sh提供支持的开放Agent技能生态系统中发现并安装第三方Agent技能。
Overview
概述
The Agent Skills format is an open standard for packaging procedural knowledge, workflows, and tools that AI agents load on demand. The CLI (maintained by Vercel Labs) serves as "npm for AI agents" -- enabling discovery and installation of community skills from any Git repository.
npx skillsskills.sh is the public directory and leaderboard for the ecosystem, hosting thousands of skills across categories like frontend, backend, DevOps, and more.
Agent Skills格式是一种开放标准,用于打包AI Agent可按需加载的过程性知识、工作流和工具。由Vercel Labs维护的 CLI相当于“AI Agent的npm”——支持从任意Git仓库发现并安装社区技能。
npx skillsskills.sh是该生态系统的公共目录和排行榜,托管了涵盖前端、后端、DevOps等多个类别的数千个技能。
Built-in cc-arsenal Skills
cc-arsenal内置技能
Before installing third-party skills, note that cc-arsenal already provides:
- agent-browser -- AI-optimized headless browser automation (snapshot + refs system)
- jira-cli -- Interactive Jira issue, epic, and sprint management
- skill-creator -- Guide for creating new skills with progressive disclosure
- find-skills -- This skill (discovery and installation of third-party skills)
Only install external skills that provide capabilities not already covered above.
在安装第三方技能之前,请注意cc-arsenal已内置以下技能:
- agent-browser —— 经AI优化的无头浏览器自动化(快照+引用系统)
- jira-cli —— 交互式Jira问题、史诗和迭代管理
- skill-creator —— 逐步引导创建新技能的工具
- find-skills —— 本技能(用于发现和安装第三方技能) 请仅安装能提供上述内置技能未覆盖功能的外部技能。
Quick Start
快速开始
1. Find Skills
1. 查找技能
bash
undefinedbash
undefinedInteractive fuzzy search across skills.sh
在skills.sh中进行交互式模糊搜索
npx skills find
npx skills find
Search by keyword
按关键词搜索
npx skills find typescript
npx skills find react
npx skills find testing
undefinednpx skills find typescript
npx skills find react
npx skills find testing
undefined2. Review Available Skills in a Repository
2. 查看仓库中的可用技能
bash
undefinedbash
undefinedList skills in a repository without installing
列出仓库中的技能但不安装
npx skills add owner/repo --list
npx skills add owner/repo --list
Example: list Vercel's official skills
示例:列出Vercel的官方技能
npx skills add vercel-labs/agent-skills --list
npx skills add vercel-labs/agent-skills --list
Example: list Anthropic's skills
示例:列出Anthropic的技能
npx skills add anthropics/skills --list
undefinednpx skills add anthropics/skills --list
undefined3. Install Skills
3. 安装技能
bash
undefinedbash
undefinedInteractive installation (choose skills and target agents)
交互式安装(选择技能和目标Agent)
npx skills add owner/repo
npx skills add owner/repo
Install a specific skill for Claude Code
为Claude Code安装特定技能
npx skills add owner/repo --skill skill-name -a claude-code
npx skills add owner/repo --skill skill-name -a claude-code
Install globally (available across all projects)
全局安装(可在所有项目中使用)
npx skills add owner/repo --skill skill-name -a claude-code -g
npx skills add owner/repo --skill skill-name -a claude-code -g
Install all skills from a repo to all detected agents
将仓库中的所有技能安装到所有检测到的Agent
npx skills add owner/repo --all
undefinednpx skills add owner/repo --all
undefinedEssential Commands
核心命令
| Command | Purpose |
|---|---|
| Search skills.sh directory |
| Install skills from a repository |
| View installed skills |
| Check for available updates |
| Update all installed skills |
| Uninstall a skill |
| Create a new skill template |
| 命令 | 用途 |
|---|---|
| 搜索skills.sh目录 |
| 从仓库安装技能 |
| 查看已安装的技能 |
| 检查可用更新 |
| 更新所有已安装的技能 |
| 卸载技能 |
| 创建新技能模板 |
Installation Scopes
安装范围
Project scope (default): Installs to in the current project directory. Committed with the project and shared with team members.
.claude/skills/Global scope ( flag): Installs to in the home directory. Available across all projects for the current user.
-g~/.claude/skills/Recommendation: Install domain-specific skills (e.g., a framework skill) at project scope. Install general-purpose skills (e.g., code review, testing patterns) at global scope.
项目范围(默认):安装到当前项目目录的下。可随项目提交并与团队成员共享。
.claude/skills/全局范围(参数):安装到主目录的下。当前用户的所有项目均可使用。
-g~/.claude/skills/建议:将领域特定技能(如框架技能)安装在项目范围。将通用技能(如代码审查、测试模式)安装在全局范围。
Source Formats
源格式
The command accepts multiple source formats:
addbash
undefinedaddbash
undefinedGitHub shorthand (most common)
GitHub简写(最常用)
npx skills add owner/repo
npx skills add owner/repo
Full GitHub URL
完整GitHub URL
npx skills add https://github.com/owner/repo
npx skills add https://github.com/owner/repo
Direct path to a specific skill
指向特定技能的直接路径
npx skills add https://github.com/owner/repo/tree/main/skills/skill-name
npx skills add https://github.com/owner/repo/tree/main/skills/skill-name
GitLab URL
GitLab URL
npx skills add https://gitlab.com/org/repo
npx skills add https://gitlab.com/org/repo
Local directory (for development)
本地目录(用于开发)
npx skills add ./my-local-skills
undefinednpx skills add ./my-local-skills
undefinedKey Repositories
核心仓库
| Repository | Description |
|---|---|
| Vercel's official skill collection (React, Next.js, design) |
| Anthropic's example skills |
| This repository (browser, Jira, skill-creator, find-skills) |
| 仓库 | 描述 |
|---|---|
| Vercel的官方技能集合(React、Next.js、设计相关) |
| Anthropic的示例技能 |
| 本仓库(包含browser、Jira、skill-creator、find-skills) |
Reference Files
参考文档
For detailed command reference, load: references/commands.md
- All CLI subcommands with complete flag documentation
- Source format details and installation paths
- Troubleshooting common issues
For discovery patterns and best practices, load: references/workflows.md
- Discovery strategies by domain and framework
- Global vs project installation guidance
- Security review of skill sources
- Combining third-party skills with cc-arsenal
- Managing updates and versions
如需详细的命令参考,请查看:references/commands.md
- 所有CLI子命令及完整参数文档
- 源格式详情和安装路径
- 常见问题排查 如需了解发现模式和最佳实践,请查看:references/workflows.md
- 按领域和框架划分的发现策略
- 全局与项目安装的指导
- 技能源的安全审查
- 第三方技能与cc-arsenal的结合使用
- 更新与版本管理
Resources
资源
- Directory: https://skills.sh
- CLI Repository: https://github.com/vercel-labs/skills
- Open Specification: https://agentskills.io
- Anthropic Skills Docs: https://code.claude.com/docs/en/skills
- 目录: https://skills.sh
- CLI仓库: https://github.com/vercel-labs/skills
- 开放规范: https://agentskills.io
- Anthropic技能文档: https://code.claude.com/docs/en/skills