Find Skills
This skill helps you discover and install skills from the open agent skills ecosystem.
When to Use
Use this skill when:
- The user asks "how do I do X" where X might be a common task with an existing skill
- The user says "find a skill for X" or "is there a skill for X"
- The user asks "can you do X" where X is a specialized capability
- The user expresses interest in extending agent capabilities
- The user wants to search for tools, templates, or workflows
- The user mentions they wish they had help with a specific domain (design, testing, deployment, etc.)
Do NOT use this skill if:
- The user wants to optimize an existing skill's description → use
skill-optimizer instead
- The user wants GitHub operations → use
gh-cli instead
- The capability is already available as a built-in tool or installed skill
- The user is asking for general knowledge that doesn't require a specialized skill
Typical triggers:
- 「找个skill」「有没有技能能做X」「搜索技能」
- "find a skill for X" "install skill" "npx skills"
- 「扩展agent能力」「skill marketplace」「找工具」
Workflow
探查 (Probe)
理解用户需求,识别领域(如 React、testing、design、deployment)和具体任务,判断是否可能存在对应技能。
约束 (Constrain)
设定搜索边界:使用具体关键词而非泛词;若首次搜索无果,尝试替代术语。安装技能前必须获得用户确认,不自动安装。
证据 (Evidence)
搜索结果来自 npx skills find 命令的实时返回和 skills.sh 目录。每个推荐的技能必须有名称、功能描述、安装命令和来源链接,不编造不存在的技能。
执行 (Execute)
Run the find command with a relevant query:
npx skills find [query]
For example:
- User asks "how do I make my React app faster?" →
npx skills find react performance
- User asks "can you help me with PR reviews?" →
npx skills find pr review
- User asks "I need to create a changelog" →
npx skills find changelog
The command will return results like:
Install with npx skills add <owner/repo@skill>
vercel-labs/agent-skills@vercel-react-best-practices
└ https://skills.sh/vercel-labs/agent-skills/vercel-react-best-practices
Present options to the user with: skill name, what it does, install command, and a link to learn more at skills.sh.
验证 (Verify)
验证推荐的技能确实存在于 skills.sh 目录,安装命令格式正确(owner/repo@skill)。若用户选择安装,验证安装成功且技能可被发现。
交付 (Deliver)
If the user wants to proceed, install the skill:
npx skills add <owner/repo@skill> -g -y
The -g flag installs globally (user-level) and -y skips confirmation prompts.
If no relevant skills exist: acknowledge that no existing skill was found, offer to help with the task directly using general capabilities, and suggest the user could create their own skill with npx skills init.
Output
A list of recommended skills with: skill name (owner/repo@skill format), one-line description, install command (npx skills add ...), and skills.sh link. If the user proceeds, the skill is installed globally and confirmation is returned. If no skills are found, a clear message is returned with alternative suggestions.
What is the Skills CLI?
The 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.
Key commands:
npx skills find [query] - Search for skills interactively or by keyword
npx skills add <package> - Install a skill from GitHub or other sources
npx skills check - Check for skill updates
npx skills update - Update all installed skills
Browse skills at: https://skills.sh/
Common Skill Categories
When searching, consider these common categories:
| Category |
Example Queries |
| 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 |
workflow, automation, git |
Tips for Effective Searches
- Use specific keywords: "react testing" is better than just "testing"
- Try alternative terms: If "deploy" doesn't work, try "deployment" or "ci-cd"
- Check popular sources: Many skills come from
vercel-labs/agent-skills or ComposioHQ/awesome-claude-skills
Guardrails
Source & Attribution
- This skill uses the Skills CLI (
npx skills) and the skills.sh directory (https://skills.sh/), an open ecosystem for agent skills.
- Skills are installed from GitHub repositories and other sources specified by the Skills CLI.
- No skills are bundled or endorsed by UniqueClub — users install third-party skills at their own discretion.
Anti-patterns
- NEVER install a skill without explicit user confirmation — always present options first.
- Do NOT fabricate or recommend skills that don't exist in the skills.sh directory.
- NEVER run
npx skills add with untrusted sources without warning the user about third-party code.
- Do NOT use this skill to optimize or audit existing skills — use
skill-optimizer instead.
Constraints
- Always use specific search keywords; avoid overly broad queries.
- If no skills are found, offer to help directly rather than forcing a skill installation.
- Verify install commands are in
owner/repo@skill format before executing.
- Clean up any temporary files created during the search/install process.
Related Skills
- skill-optimizer — Audit and optimize installed SKILL.md files for discoverability and routing accuracy.
- gh-cli — GitHub CLI reference for repository operations, useful when skills are hosted on GitHub.
- bright-data — Web data extraction skill, an example of a specialized capability that might be found via this skill.
About UniqueClub
Part of the UniqueClub toolkit. This skill helps users discover third-party skills within the open agent skills ecosystem.
🌐 https://uniqueclub.ai
1---2name: find-skills3description: Discover and install agent skills from the open agent skills ecosystem using the Skills CLI (`npx skills`). Helps users find functionality that might exist as an installable skill for specialized domains, workflows, and tools. Use when: "找个skill", "find a skill", "有没有技能", "install skill", "搜索技能", "npx skills", "skill discovery", "扩展agent能力", "找工具", "skill marketplace". Searches skills.sh ecosystem, presents options, and can install skills globally with confirmation. Cross-references: gh-cli, skill-optimizer. Built by UniqueClub 🌐 https://uniqueclub.ai4---56# Find Skills78This skill helps you discover and install skills from the open agent skills ecosystem.910## When to Use1112Use this skill when:13- The user asks "how do I do X" where X might be a common task with an existing skill14- The user says "find a skill for X" or "is there a skill for X"15- The user asks "can you do X" where X is a specialized capability16- The user expresses interest in extending agent capabilities17- The user wants to search for tools, templates, or workflows18- The user mentions they wish they had help with a specific domain (design, testing, deployment, etc.)1920Do NOT use this skill if:21- The user wants to optimize an existing skill's description → use `skill-optimizer` instead22- The user wants GitHub operations → use `gh-cli` instead23- The capability is already available as a built-in tool or installed skill24- The user is asking for general knowledge that doesn't require a specialized skill2526Typical triggers:27- 「找个skill」「有没有技能能做X」「搜索技能」28- "find a skill for X" "install skill" "npx skills"29- 「扩展agent能力」「skill marketplace」「找工具」3031## Workflow32331. **探查 (Probe)**34理解用户需求,识别领域(如 React、testing、design、deployment)和具体任务,判断是否可能存在对应技能。35362. **约束 (Constrain)**37设定搜索边界:使用具体关键词而非泛词;若首次搜索无果,尝试替代术语。安装技能前必须获得用户确认,不自动安装。38393. **证据 (Evidence)**40搜索结果来自 `npx skills find` 命令的实时返回和 skills.sh 目录。每个推荐的技能必须有名称、功能描述、安装命令和来源链接,不编造不存在的技能。41424. **执行 (Execute)**43Run the find command with a relevant query:4445```bash46npx skills find [query]47```4849For example:50- User asks "how do I make my React app faster?" → `npx skills find react performance`51- User asks "can you help me with PR reviews?" → `npx skills find pr review`52- User asks "I need to create a changelog" → `npx skills find changelog`5354The command will return results like:5556```57Install with npx skills add <owner/repo@skill>5859vercel-labs/agent-skills@vercel-react-best-practices60└ https://skills.sh/vercel-labs/agent-skills/vercel-react-best-practices61```6263Present options to the user with: skill name, what it does, install command, and a link to learn more at skills.sh.64655. **验证 (Verify)**66验证推荐的技能确实存在于 skills.sh 目录,安装命令格式正确(`owner/repo@skill`)。若用户选择安装,验证安装成功且技能可被发现。67686. **交付 (Deliver)**69If the user wants to proceed, install the skill:7071```bash72npx skills add <owner/repo@skill> -g -y73```7475The `-g` flag installs globally (user-level) and `-y` skips confirmation prompts.7677If no relevant skills exist: acknowledge that no existing skill was found, offer to help with the task directly using general capabilities, and suggest the user could create their own skill with `npx skills init`.7879## Output8081A list of recommended skills with: skill name (`owner/repo@skill` format), one-line description, install command (`npx skills add ...`), and skills.sh link. If the user proceeds, the skill is installed globally and confirmation is returned. If no skills are found, a clear message is returned with alternative suggestions.8283## What is the Skills CLI?8485The 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.8687**Key commands:**8889- `npx skills find [query]` - Search for skills interactively or by keyword90- `npx skills add <package>` - Install a skill from GitHub or other sources91- `npx skills check` - Check for skill updates92- `npx skills update` - Update all installed skills9394**Browse skills at:** https://skills.sh/9596## Common Skill Categories9798When searching, consider these common categories:99100| Category | Example Queries |101| --------------- | ---------------------------------------- |102| Web Development | react, nextjs, typescript, css, tailwind |103| Testing | testing, jest, playwright, e2e |104| DevOps | deploy, docker, kubernetes, ci-cd |105| Documentation | docs, readme, changelog, api-docs |106| Code Quality | review, lint, refactor, best-practices |107| Design | ui, ux, design-system, accessibility |108| Productivity | workflow, automation, git |109110## Tips for Effective Searches1111121. **Use specific keywords**: "react testing" is better than just "testing"1132. **Try alternative terms**: If "deploy" doesn't work, try "deployment" or "ci-cd"1143. **Check popular sources**: Many skills come from `vercel-labs/agent-skills` or `ComposioHQ/awesome-claude-skills`115116## Guardrails117118**Source & Attribution**119- This skill uses the **Skills CLI** (`npx skills`) and the **skills.sh** directory (https://skills.sh/), an open ecosystem for agent skills.120- Skills are installed from GitHub repositories and other sources specified by the Skills CLI.121- No skills are bundled or endorsed by UniqueClub — users install third-party skills at their own discretion.122123**Anti-patterns**124- NEVER install a skill without explicit user confirmation — always present options first.125- Do NOT fabricate or recommend skills that don't exist in the skills.sh directory.126- NEVER run `npx skills add` with untrusted sources without warning the user about third-party code.127- Do NOT use this skill to optimize or audit existing skills — use `skill-optimizer` instead.128129**Constraints**130- Always use specific search keywords; avoid overly broad queries.131- If no skills are found, offer to help directly rather than forcing a skill installation.132- Verify install commands are in `owner/repo@skill` format before executing.133- Clean up any temporary files created during the search/install process.134135## Related Skills136137- **skill-optimizer** — Audit and optimize installed SKILL.md files for discoverability and routing accuracy.138- **gh-cli** — GitHub CLI reference for repository operations, useful when skills are hosted on GitHub.139- **bright-data** — Web data extraction skill, an example of a specialized capability that might be found via this skill.140141## About UniqueClub142143Part of the UniqueClub toolkit. This skill helps users discover third-party skills within the open agent skills ecosystem.144🌐 https://uniqueclub.ai