A meta skill that teaches AI agents how to discover, install, and use skills from the findskill.md ecosystem...
A meta skill that teaches AI agents how to discover, install, and use skills from the findskill.md ecosystem.
This skill enables you to extend your capabilities by finding and installing specialized skills from the findskill.md registry. When a user asks you to do something you don't have a skill for, or when you need specialized functionality, use findskill to discover and install relevant skills.
Use findskill when:
You have two options to run findskill commands:
Run commands directly without installing:
npx findskill <command>
Install once, then run without npx prefix:
npm install -g findskill
findskill <command>
All examples below use npx findskill. If you installed globally, omit the npx prefix.
Find skills by name, description, or tags:
npx findskill search <query>
Example:
npx findskill search "git commit"
npx findskill search "documentation"
npx findskill search "review"
View detailed information about a specific skill before installing:
npx findskill info <skill-name>
This shows the author, description, tags, star count, and installation instructions.
Install a skill to make it available for use:
npx findskill install <skill-name>
Skills are installed to ~/.claude/skills/ by default. Each skill contains a SKILL.md file with instructions you should read and follow.
See what skills are already available:
npx findskill list
Update installed skills to their latest versions:
npx findskill update # Update all skills
npx findskill update <name> # Update specific skill
Assess the task: Determine if a specialized skill would help accomplish the user's goal more effectively.
Search for relevant skills:
npx findskill search "<relevant keywords>"
Review skill details: Before installing, check what the skill does:
npx findskill info <skill-name>
Install if appropriate: If the skill matches the user's needs:
npx findskill install <skill-name>
Read the installed skill: After installation, read the SKILL.md to understand how to use it:
cat ~/.claude/skills/<skill-name>/SKILL.md
Apply the skill: Follow the instructions in the skill's SKILL.md to complete the user's task.
npx findskill list before searching to see what's already available.User: "Help me write a good git commit message for my changes"
Agent thought process:
npx findskill search "commit"npx findskill info commitnpx findskill install commitcat ~/.claude/skills/commit/SKILL.mdFINDSKILL_DIR: Custom installation directory (default: ~/.claude/skills/)FINDSKILL_API: Custom API endpoint (for self-hosted registries)skills, meta, findskill, discovery, installation, package-manager, claude-skills