New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

skillmds

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

skillmds

SkillMD for agents: the `skillmds` MCP server + the `skillmd` CLI (lint, scan, search, install, publish Agent Skills) from skillmd.com.

Source
npmnpm
Version
1.0.21
Version published
Weekly downloads
922
177.71%
Maintainers
1
Weekly downloads
 
Created
Source

SkillMD

skillmds

npm version license

Tools for working with Agent Skills (SKILL.md) from the SkillMD registry. One package, two binaries:

  • skillmd — a CLI to lint, scan, search, install, and publish skills.
  • skillmds — an MCP server exposing the registry to MCP clients (Claude Code, Claude Desktop, Cursor, …).

Both validate SKILL.md with the same engine, so the CLI and the registry apply identical rules.

Install

npm i -g skillmds

This installs both the skillmd and skillmds commands. To run the CLI without installing:

npx skillmds lint .

npx skillmds <command> runs the CLI; npx skillmds with no command starts the MCP server.

CLI: skillmd

CommandDescription
skillmd lint [path] (check)Validate SKILL.md files; print diagnostics and a quality score.
skillmd scan [path]Report scripts, network calls, and secret access.
skillmd rules [id]List lint rules, or show one.
skillmd init [name]Create a SKILL.md from a template.
skillmd search <query>Search the registry.
skillmd add <source>Install a skill (registry slug, GitHub repo, or local path). Lints before writing.
skillmd list (ls)List installed skills.
skillmd remove <names...> (rm)Remove installed skills.
skillmd update [names...]Update installed skills from the registry.
skillmd publish [path] (submit)Publish to the registry. Exits non-zero on lint errors.
skillmd login / logoutStore or remove a token.

All commands accept --json.

lint

skillmd lint ./my-skill
skillmd lint . --format sarif > skillmd.sarif
skillmd lint . --strict
skillmd lint . --fix

Formats: text (default), json, sarif (GitHub Code Scanning), github (Actions annotations). Exit codes: 0 clean, 1 errors (or warnings with --strict / --fail-on-warning), 2 usage error.

add

skillmd add anthropic/pdf                 # registry slug (verified-only by default)
skillmd add owner/repo                     # GitHub repo
skillmd add ./path                         # local
skillmd add anthropic/pdf -a claude-code -g
skillmd add some/skill --deny executes_scripts
skillmd add some/skill --skip-lint

publish

skillmd login                # store a token from your skillmd.com account
skillmd publish ./my-skill   # blocked on lint errors
skillmd publish ./my-skill --dry-run
skillmd publish ./my-skill --force   # publish despite warnings; never bypasses errors

MCP server: skillmds

Claude Code:

claude mcp add skillmds -- npx -y skillmds

Other MCP clients:

{
  "mcpServers": {
    "skillmds": { "command": "npx", "args": ["-y", "skillmds"] }
  }
}

Tools: skillmd_search, skillmd_get, skillmd_install, skillmd_trending, skillmd_recommend, skillmd_list_saved, skillmd_lint. skillmd_install writes a skill's SKILL.md and never executes scripts.

Configuration

Resolution order, highest first:

SettingSources
Token--tokenSKILLMD_TOKEN~/.skillmd/config.json
API base--apiSKILLMD_API → default registry

SKILLMD_TOKEN enables skillmd_list_saved, personalized recommendations, and publishing.

License

MIT

Keywords

mcp

FAQs

Package last updated on 20 Jul 2026

Related posts