Skillsmith skillsmith
Discover, install, compare, and manage Claude Code skills. Search the registry, get recommendations, validate skill quality, and manage your installed skills.
git clone https://github.com/smith-horn/skillsmith
T=$(mktemp -d) && git clone --depth=1 https://github.com/smith-horn/skillsmith "$T" && mkdir -p ~/.claude/skills && cp -r "$T/packages/cli/assets/skillsmith-skill" ~/.claude/skills/smith-horn-skillsmith-skillsmith && rm -rf "$T"
packages/cli/assets/skillsmith-skill/SKILL.mdSkillsmith Skill
Discover, install, compare, and manage Claude Code skills through natural language.
Trigger Phrases
- "search for skills", "find skills", "discover skills"
- "install skill", "add skill"
- "recommend skills", "suggest skills"
- "compare skills"
- "validate skill", "check skill"
- "list installed skills", "show my skills"
- "uninstall skill", "remove skill"
- "skill details", "get skill"
- "browse skills", "explore skills"
- "high quality skills", "verified skills"
Slash Commands
| Command | Description | Example |
|---|---|---|
| Search for skills by query or filters | |
| Install a skill from the registry | |
| Get contextual skill recommendations | |
| Compare multiple skills side-by-side | |
| Validate a skill's structure | |
| List all installed skills | |
| Remove an installed skill | |
| Get detailed skill information | |
MCP Tool Delegation
This skill delegates to the
mcp__skillsmith MCP server for all operations. When the user requests skill-related actions, use the appropriate MCP tool.
Note: The examples below show the tool parameters. Invoke these using Claude's standard MCP tool calling mechanism.
Search for Skills
Use
mcp__skillsmith__search with these parameters:
(optional): Search termquery
(optional): development, testing, devops, etc.category
(optional): verified, community, experimentaltrust_tier
(optional): Minimum quality score (0-100)min_score
(optional): Max results (default 10)limit
Example: Search for testing skills with quality score > 70
{ "query": "testing", "min_score": 70, "limit": 10 }
Note: Either
query OR at least one filter (category, trust_tier, min_score) must be provided.
Get Skill Details
Use
mcp__skillsmith__get_skill with:
(required): Skill ID in formatidauthor/name
{ "id": "community/jest-helper" }
Install a Skill
Use
mcp__skillsmith__install_skill with:
(required): Skill IDid
(optional): Overwrite if existsforce
{ "id": "community/jest-helper", "force": false }
Uninstall a Skill
Use
mcp__skillsmith__uninstall_skill with:
(required): Skill nameid
{ "id": "jest-helper" }
Get Recommendations
Use
mcp__skillsmith__skill_recommend with:
(optional): Project contextcontext
(optional): Max recommendationslimit
{ "context": "React TypeScript project", "limit": 5 }
Compare Skills
Use
mcp__skillsmith__skill_compare with:
(required): Array of 2-5 skill IDs to compareskill_ids
{ "skill_ids": ["community/jest-helper", "community/vitest-helper"] }
Validate a Skill
Use
mcp__skillsmith__skill_validate with:
(required): Path to skill directorypath
{ "path": "./my-skill" }
Usage Examples
Example 1: Search and Install
User: "Find testing skills for React"
-
Search for skills using
:mcp__skillsmith__search{ "query": "testing React" } -
Present results to user with quality scores and trust tiers
-
If user selects one, install using
:mcp__skillsmith__install_skill{ "id": "community/react-testing-library-helper" }
Example 2: Get Recommendations
User: "What skills would help with this codebase?"
-
Analyze current project context (package.json, file types, etc.)
-
Get recommendations using
:mcp__skillsmith__skill_recommend{ "context": "Node.js TypeScript API with Express" } -
Present recommendations with explanations
Example 3: Compare Options
User: "Compare jest-helper and vitest-helper"
Use
mcp__skillsmith__skill_compare:
{ "skill_ids": ["community/jest-helper", "community/vitest-helper"] }
Present comparison table showing features, quality scores, trust tiers, etc.
Example 4: Browse by Category
User: "Show me verified security skills"
Use
mcp__skillsmith__search:
{ "category": "security", "trust_tier": "verified" }
Example 5: Quality-Based Search
User: "Find high-quality DevOps skills"
Use
mcp__skillsmith__search:
{ "category": "devops", "min_score": 80 }
Trust Tiers
| Tier | Description | Badge |
|---|---|---|
| Official Anthropic or partner skills | Green |
| Community-reviewed and approved | Yellow |
| New or beta skills, use with caution | Red |
Quality Scores
Quality scores (0-100) reflect skill quality based on:
- Repository health (stars, forks, activity)
- Documentation completeness
- Code quality indicators
- Community engagement
Recommended minimum scores:
- Production use: 70+
- General use: 50+
- Experimental: Any
CLI Fallback
If the MCP server is unavailable, use the CLI directly:
# Search skillsmith search "testing" --tier verified # Install skillsmith install community/jest-helper # List installed skillsmith list # Remove skillsmith remove jest-helper
Related Commands
- Analyze codebase for skill recommendationsskillsmith analyze
- Sync skills from registryskillsmith sync
- Create a new skillskillsmith author init
- Validate skill structureskillsmith author validate