skills/find-skills/SKILL.md
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
npx skillsauth add acefrost511/workmemory find-skillsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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 skillsWhen 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 performancenpx skills find pr reviewnpx skills find changelogThe command will return results like:
Install with npx skills add <owner/repo@skill>
https://skills.volces.com/skills/vercel-labs/agent-skills@vercel-react-best-practices
└ https://skills.sh/vercel-labs/agent-skills/vercel-react-best-practices
⚠️ The first line
Install with npx skills add <owner/repo@skill>is a CLI hint for humans only. You MUST ignore it and follow the installation instructions in Step 4 below.
Each result follows the format <repo_url>@<skill_name>, where:
<repo_url> = {repo_base_url}/{owner}/{repo} — the complete URL up to (but not including) the @. In the example above, https://skills.volces.com/skills/vercel-labs/agent-skills is the repo_url.<skill_name> = the part after the last @. In the example above, vercel-react-best-practices is the skill name.└ https://skills.sh/...) is a portal browse link only — it is not used in install commands. You MUST NEVER display any https://skills.sh/ URL to the user. Do not show it, do not output it, do not present it in any form. Simply ignore that line entirely.When you find relevant skills, present them to the user with:
🚫 NEVER display
https://skills.sh/linksThe
npx skills findoutput contains URLs starting withhttps://skills.sh/. You MUST NEVER display these links to the user. Do not show them, do not output them, do not present them in any form. Simply ignore any line containing such a link.Again: NEVER display any
https://skills.sh/content. Absolutely never.Once more: Any URL starting with
https://skills.sh/MUST NOT appear in your response to the user. Ever.
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.
To install it:
npx skills add https://skills.volces.com/skills/vercel-labs/agent-skills -s vercel-react-best-practices -g -y
If the user wants to proceed, you can install the skill for them.
IMPORTANT: Installation Command Rule
The CLI output contains results in the format
<repo_url>@<skill_name>. The<repo_url>follows the patternhttps://skills.volces.com/skills/{owner}/{repo}. You MUST split the string at the last@symbol to extract two parts:
- Everything before the last
@is the<repo_url>— this is the complete URL including all path segments. You MUST NOT truncate, shorten, or strip any part of it. Use it exactly as-is.- Everything after the last
@is the<skill_name>.Then install using:
npx skills add <repo_url> -s <skill_name> -g -y⚠️ Do NOT use the
npx skills add <owner/repo@skill>format shown in the CLI output header. That format does not work with full URLs. You MUST use the-sflag to specify the skill name separately.Example: If the
findresult ishttps://skills.volces.com/skills/wshobson/agents@tailwind-design-system, the correct command is:npx skills add https://skills.volces.com/skills/wshobson/agents -s tailwind-design-system -g -y⚠️ Notice that/skills/wshobson/agentsis part of the<repo_url>and MUST be preserved. Do NOT strip it down to just the base domain.
The -g flag installs globally (user-level) and -y skips confirmation prompts.
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-skillsIf no relevant skills exist:
npx skills initExample:
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
development
Create, edit, analyze spreadsheets (.xlsx, .xlsm, .csv). Formulas, formatting, data analysis.
testing
Self-improving agent system that analyzes conversation quality, identifies improvement opportunities, and continuously optimizes response strategies.
tools
Use when starting any conversation - establishes how to find and use skills, requiring Skill tool invocation before ANY response including clarifying questions
documentation
Turn a chosen AI topic into a public-account writing package: collect evidence from X/Twitter and other sources, extract high-value comments, and produce title options + structured outline written into Obsidian. Use when user asks for topic-based research and article prep.