Agent skill
find-skills
Use when the user asks how to do something, wants a skill for a task, or wants to discover and install new agent capabilities.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/find-skills-jhostalek-dotclaude
SKILL.md
query = $ARGUMENTS
Discover and install skills from the open agent skills ecosystem using the Skills CLI (npx skills).
Browse available skills at https://skills.sh/
CLI
npx skills find [query] # search by keyword
npx skills add <owner/repo@skill> # install a skill
npx skills check # check for updates
npx skills update # update all installed
Install Protocol
Always pass -a claude-code -y when installing. -a targets .claude/skills/ only — without it, the CLI scatters files into .agents/, .junie/, .kilocode/, .kiro/. -y skips confirmation. Add -g only if the user explicitly asks for a global install.
npx skills add <owner/repo@skill> -a claude-code -y
Post-Install Cleanup (mandatory)
The CLI always creates .agents/skills/<name>/ as internal storage and symlinks from .claude/skills/. No flag prevents this. Every install requires cleanup:
# Replace symlink with real copy
rm .claude/skills/<skill-name>
cp -R .agents/skills/<skill-name> .claude/skills/<skill-name>
# Remove all CLI artifacts
rm -rf .agents .junie .kilocode .kiro
rm -f skills-lock.json
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?