find-skills

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Find 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
npx skills
CLI (maintained by Vercel Labs) serves as "npm for AI agents" -- enabling discovery and installation of community skills from any Git repository.
skills.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维护的
npx skills
CLI相当于“AI Agent的npm”——支持从任意Git仓库发现并安装社区技能。
skills.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
undefined
bash
undefined

Interactive 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
undefined
npx skills find typescript npx skills find react npx skills find testing
undefined

2. Review Available Skills in a Repository

2. 查看仓库中的可用技能

bash
undefined
bash
undefined

List 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
undefined
npx skills add anthropics/skills --list
undefined

3. Install Skills

3. 安装技能

bash
undefined
bash
undefined

Interactive 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
undefined
npx skills add owner/repo --all
undefined

Essential Commands

核心命令

CommandPurpose
npx skills find [query]
Search skills.sh directory
npx skills add <source>
Install skills from a repository
npx skills list
View installed skills
npx skills check
Check for available updates
npx skills update
Update all installed skills
npx skills remove [name]
Uninstall a skill
npx skills init [name]
Create a new skill template
命令用途
npx skills find [query]
搜索skills.sh目录
npx skills add <source>
从仓库安装技能
npx skills list
查看已安装的技能
npx skills check
检查可用更新
npx skills update
更新所有已安装的技能
npx skills remove [name]
卸载技能
npx skills init [name]
创建新技能模板

Installation Scopes

安装范围

Project scope (default): Installs to
.claude/skills/
in the current project directory. Committed with the project and shared with team members.
Global scope (
-g
flag): Installs to
~/.claude/skills/
in the home directory. Available across all projects for the current user.
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
add
command accepts multiple source formats:
bash
undefined
add
命令支持多种源格式:
bash
undefined

GitHub shorthand (most common)

GitHub简写(最常用)

npx skills add owner/repo
npx skills add owner/repo

Full GitHub URL

完整GitHub URL

Direct path to a specific skill

指向特定技能的直接路径

GitLab URL

GitLab URL

Local directory (for development)

本地目录(用于开发)

npx skills add ./my-local-skills
undefined
npx skills add ./my-local-skills
undefined

Key Repositories

核心仓库

RepositoryDescription
vercel-labs/agent-skills
Vercel's official skill collection (React, Next.js, design)
anthropics/skills
Anthropic's example skills
mgiovani/cc-arsenal
This repository (browser, Jira, skill-creator, find-skills)
仓库描述
vercel-labs/agent-skills
Vercel的官方技能集合(React、Next.js、设计相关)
anthropics/skills
Anthropic的示例技能
mgiovani/cc-arsenal
本仓库(包含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

资源