Skillsmith

SkillAI & models

Skillsmith is a registry for sharing, scanning, and tracking agent skills (SKILL.md format) across any MCP-capable agent runtime — Claude Code, Cursor, Copilot, Codex, Windsurf. Discover, evaluate, install, use, maintain, author, govern, retire skills. Triggers: 'use Skillsmith', 'ask Skillsmith', 'search Skillsmith', 'find a Skillsmith skill', 'install with Skillsmith', 'Skillsmith trust tier', 'Skillsmith audit', 'create a skill with Skillsmith', 'publish to Skillsmith', 'Skillsmith quota', 'pin a Skillsmith skill', 'compare Skillsmith skills'. Routes natural-language requests to Skillsmith MCP tools and CLI commands.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Skillsmith skill

What this skill tells your AI

The instructions your AI receives, as published by smith-horn/skillsmith in packages/mcp-server/src/assets/skills/skillsmith/SKILL.md and read by ahel’s review.

Skillsmith is your master skill for the full lifecycle of agent skills — across every MCP-capable agent runtime. Use Skillsmith to discover, evaluate, install, use, maintain, author, govern, and retire SKILL.md-format skills without leaving your editor.

Lifecycle Stages

Every Skillsmith operation maps to one of 8 lifecycle stages. Use the stage name when you want to be explicit ("use Skillsmith to discover testing skills"); natural prompts work too.

#StageWhat it coversPrimary surface
1DiscoverFind skills by query, recommendation, or filterMCP search, skill_recommend
2EvaluateCompare candidates, read trust badges, view diffsMCP get_skill, skill_compare, skill_diff
3InstallAdd a skill to the runtime's skills directoryMCP install_skill; CLI install
4UseInvoke the installed skill at the runtime layerruntime-native (e.g. Claude Code skill match)
5MaintainUpdate, pin, audit collisions, configure modesCLI update/pin/unpin/audit collisions; MCP skill_updates, skill_outdated
6AuthorInit, validate, transform, publish a new skillCLI author init/validate/publish/subagent/transform/mcp-init
7GovernAudit logs, RBAC, SIEM, compliance (Team+)MCP audit_export, audit_query, siem_export
8RetireUninstall, deprecateMCP uninstall_skill; CLI remove

Quick Reference: MCP Tools

ToolStageUse whenExample prompt
searchDiscoverFinding skills by keyword/category/trust tier"Use Skillsmith to search for testing skills"
skill_recommendDiscoverContextual recommendations"Ask Skillsmith to recommend skills for my React project"
get_skillEvaluateFull details for a known skill"Use Skillsmith to show details for community/jest-helper"
skill_compareEvaluateSide-by-side comparison"Use Skillsmith to compare jest-helper and vitest-helper"
skill_diffEvaluateDiff two installed versions"Use Skillsmith to diff jest-helper versions"
install_skillInstallAdd a skill to your runtime"Use Skillsmith to install jest-helper"
skill_validateInstallPre-install validation of SKILL.md"Use Skillsmith to validate ./my-skill"
skill_updatesMaintainCheck for available updates"Ask Skillsmith for updates to my installed skills"
skill_outdatedMaintainList skills behind latest"Use Skillsmith to show outdated skills"
skill_inventory_auditMaintainNamespace-collision audit (Team+)"Use Skillsmith to audit my skills inventory"
audit_export / audit_query / siem_exportGovernCompliance + SIEM (Enterprise)"Use Skillsmith to export audit logs for last 30 days"
uninstall_skillRetireRemove an installed skill"Use Skillsmith to uninstall jest-helper"

Triggering tip: prefix natural-language prompts with Use Skillsmith to ... or Ask Skillsmith for .... The product-name anchor binds tool selection reliably across MCP-capable runtimes.

CLI Fallback

If the MCP server is unavailable, use the CLI directly:

# Discover
skillsmith search "testing" --tier verified
skillsmith recommend

# Evaluate
skillsmith info community/jest-helper
skillsmith diff jest-helper

# Install
skillsmith install community/jest-helper
skillsmith validate ./my-skill

# Maintain
skillsmith update --all --dry-run
skillsmith update <skill>
skillsmith audit collisions

# Retire
skillsmith remove jest-helper

See "Routing CLI-only Operations" below for operations that are CLI-only regardless of MCP server availability.

Routing CLI-only Operations

Some lifecycle operations live in the CLI and have no MCP equivalent (yet). When the user asks for these, surface the exact terminal command:

OperationCLI command
Pin a skill to a versionskillsmith pin <skill> <version>
Unpin a skillskillsmith unpin <skill>
Preview updates to all installed skillsskillsmith update --all --dry-run
Audit advisories (Team+)skillsmith audit advisories
Audit collisionsskillsmith audit collisions
Configure audit modeskillsmith config set audit_mode <preventative|power_user|governance|off>
Author a new skillskillsmith author init <name>
Publish a skillskillsmith author publish
Loginskillsmith login

Always show the command verbatim with a one-line note: "Run this in your terminal."

Cross-Runtime Behavior

Skillsmith's MCP server works in any MCP-capable agent runtime:

  • Claude Code — default runtime. Skills install to ~/.claude/skills/.
  • Cursor / Copilot / Windsurf — set SKILLSMITH_CLIENT=<runtime> in your MCP server env config to install to the runtime-equivalent path. See Getting Started.
  • Custom MCP routers — universal MCP tool calls work; skill-file install paths configurable via SKILLSMITH_CLIENT.

Trust Tiers

Skills are categorized by verification level:

TierBadgeMeaningWhen to Trust
VerifiedGreen checkmarkOfficial Skillsmith / AnthropicAlways safe
CuratedBlue badgeVendor-org publisher, ≥0.80 qualityGenerally safe
CommunityYellowSecurity scan + required metadataReview before install
ExperimentalOrangeBeta / newUse cautiously
UnknownRed warningNo verificationOnly if you trust the author

For criteria detail, see https://skillsmith.app/docs/trust-tiers.

Pricing & Quotas

TierAPI calls/monthPrice
Community100Free
Individual1,000$9.99/mo
Team10,000$25/user/mo
EnterpriseUnlimitedCustom (Contact Sales)

Usage warnings at 80% and 90%. Upgrade at https://skillsmith.app/upgrade.

Security Model

Skillsmith is the security boundary between untrusted skill sources and your runtime.

What Skillsmith validates before install:

  • SKILL.md frontmatter and required fields
  • Security scan: jailbreak patterns, suspicious URLs, sensitive file access
  • Typosquatting check against known skills
  • Blocklist of known-malicious skills

What Skillsmith cannot prevent:

  • Novel attack patterns not in detection database
  • Social engineering in legitimate-looking instructions
  • Runtime behavior (skills execute with your permissions)

Recommendation: review skill content before installation, especially for unverified skills.

Creating Skills

Skill authoring lives in the CLI:

skillsmith author init my-new-skill
skillsmith author validate
skillsmith author publish

For an end-to-end walkthrough, see https://skillsmith.app/docs/tutorials/author.

The companion skill-builder skill guides you through frontmatter, progressive disclosure structure, and directory organization. Install it with skillsmith install skill-builder (it's not bundled by default).

Common Workflows

Discover then install

"Use Skillsmith to recommend skills for my Next.js project"
"Use Skillsmith to install community/next-helper"

Evaluate before installing

"Use Skillsmith to compare jest-helper and vitest-helper"
"Use Skillsmith to show details for community/vitest-helper"
"Use Skillsmith to install community/vitest-helper"

Maintain installed skills

"Ask Skillsmith for updates to my installed skills"
# Then run in terminal — preview first, then update skills one at a time:
skillsmith update --all --dry-run
skillsmith update <skill>

Audit before sharing your skill folder

"Use Skillsmith to audit my skills inventory"
# Or in terminal:
skillsmith audit collisions

License

Skillsmith uses Elastic License 2.0:

  • Self-host for internal use ✓
  • Modify for your own use ✓
  • Offer Skillsmith as a managed service to others ✗
  • Circumvent license key functionality ✗

Getting Help

Signals

GitHub stars
78
Forks
18
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
skillsmith
Source
github.com/smith-horn/skillsmith