This skill helps you discover and install skills from the open agent skills ecosystem.
Use this skill when the user:
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 keywordnpx skills add <package> - Install a skill from GitHub or other sourcesnpx skills check - Check for skill updatesnpx skills update - Update all installed skillsBrowse skills at: https://skills.sh/
Before running any npx skills command, check if npx is available:
which npx
If npx is not found, fall back to the bundled bun shipped with Cherry Studio.
Cherry Studio sets the CHERRY_STUDIO_BUN_PATH environment variable pointing to its
bundled bun binary. Use it as follows:
if [ -n "$CHERRY_STUDIO_BUN_PATH" ] && [ -x "$CHERRY_STUDIO_BUN_PATH" ]; then
"$CHERRY_STUDIO_BUN_PATH" x skills <subcommand> [args]
else
echo "Error: Neither npx nor bundled bun found. Install Node.js or run Cherry Studio's bun installer."
fi
For example, npx skills find react becomes "$CHERRY_STUDIO_BUN_PATH" x skills find react.
Always try npx first. Only use the bun fallback when npx is unavailable.
When a user asks for help with something, identify:
Run the find command with a relevant query:
npx skills find [query]
For example:
npx skills find react performance
npx skills find pr review
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
When you find relevant skills, present them to the user with:
Example response:
I found a skill that might help! The "vercel-react-best-practices" skill provides
React and Next.js performance optimization guidelines from Vercel Engineering.
Source: https://skills.sh/vercel-labs/agent-skills/vercel-react-best-practices
To install it (after you've reviewed the source):
npx skills add vercel-labs/agent-skills@vercel-react-best-practices
⚠️ Security: Skills are third-party code that runs with full agent permissions. A malicious skill could read, modify, or delete files in your project.
Before installing any skill you MUST:
npx skills add
until the user says "yes" or equivalent. Never install silently.Only after the user confirms, run:
npx skills add <owner/repo@skill> -y
The -y flag is required for non-interactive execution, but the user
confirmation step above ensures the user has reviewed and approved the install.
Skills are installed to the current project's .claude/skills/ directory.
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 |
vercel-labs/agent-skills or ComposioHQ/awesome-claude-skills
If no relevant skills exist:
npx skills init
Example:
I searched for skills related to "xyz" but didn't find any matches.
I can still help you with this task directly! Would you like me to proceed?
If this is something you do often, you could create your own skill:
npx skills init my-xyz-skill