swarmskills
Provides tools for managing skills for the Amp CLI agent, including listing, showing, searching, and syncing skills.
Provides tools for managing skills for GitHub Copilot, including listing, showing, searching, and syncing skills.
Provides tools for managing skills for the Hermes Agent, including listing, showing, searching, and syncing skills.
Provides tools for managing skills for Replit, including listing, showing, searching, and syncing skills.
Provides tools for managing skills for Warp, including listing, showing, searching, and syncing skills.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@swarmskillslist skills for Cursor"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
swarmskills
A CLI and MCP server for managing skills across ~45 code CLI agents.
Multi-agent: Claude Code, Cursor, Codex, Goose, Gemini CLI, OpenCode, GitHub Copilot, Windsurf, OpenHands, Qwen Code, Cline, Continue, Crush, iFlow, Junie, Kiro, Kode, Roo Code, Kilo Code, Antigravity, Amp, Droid, Firebender, Replit, Warp, Augment, Bob, CodeBuddy, Command Code, Cortex Code, Deep Agents, Kimi, MCPJam, Mistral Vibe, OpenClaw, TRAE, TRAE CN, Mux, Neovate, Pi, Pochi, Qoder, Zencoder, AdaL, Hermes — plus user-defined custom tools.
CLI: list, show, search, sync skills across tools; manage Claude Code plugins and marketplaces.
MCP server: 18 tools that let Claude (or any MCP client) discover, install, enable, and sync skills mid-session.
All agents use the same SKILL.md + YAML-frontmatter format; swarmskills knows where each one looks for them.
Install
npm install -g swarmskillsRequires Node.js 20+.
Related MCP server: aiskillstore
CLI usage
Multi-agent
# See every supported tool and which ones are detected on this machine
swarmskills tools list
swarmskills tools list --detected
swarmskills tools detect cursor
# List skills for a specific tool
swarmskills list --tool=cursor
swarmskills list --tool=goose
# List skills across every detected tool
swarmskills list --skills --all-tools
# Search across every detected tool
swarmskills search "test driven" --tool=all
# Show a skill's content from a non-Claude tool
swarmskills show my-skill --tool=cursor
# Register a custom tool
swarmskills tools add-custom myagent /abs/path/to/skills --name "My Agent"
swarmskills tools remove-custom myagentSet a default tool
Tired of typing --tool=cursor every time? Pick a default and list, show, search (without --tool) will use it.
# Interactive picker — shows every detected tool, you choose one
swarmskills tools set-default
# Or pass the key directly
swarmskills tools set-default cursor
swarmskills tools set-default all # default to cross-tool discovery
swarmskills tools get-default # show effective default + sources
swarmskills tools clear-default # revert to claude-codeResolution precedence (highest first):
Explicit
--tool=<key>flag on the commandSWARMSKILLS_DEFAULT_TOOLenvironment variabledefaults.toolin~/.config/swarmskills/config.jsonclaude-code
Sync skills across tools
# Mirror a skill from Claude Code into Cursor + Goose (symlink by default)
swarmskills sync my-skill --from claude-code --to cursor,goose
# Mirror every skill from one tool to another
swarmskills sync --all --from claude-code --to cursor
# Force overwrite, copy instead of symlinking
swarmskills sync my-skill --from claude-code --to cursor --copy --forceClaude Code plugins (Claude-only)
swarmskills list # plugins + skills for Claude Code
swarmskills enable superpowers@claude-plugins-official
swarmskills disable superpowers@claude-plugins-official
swarmskills install superpowers@claude-plugins-official
swarmskills marketplace list
swarmskills marketplace add my-marketplace owner/repo
swarmskills marketplace refresh claude-plugins-officialMCP server usage
Add to your MCP config (~/.claude.json or project .mcp.json or any other MCP-aware client):
{
"mcpServers": {
"swarmskills": {
"command": "npx",
"args": ["-y", "swarmskills-mcp"]
}
}
}The server exposes 18 tools:
Tool | Purpose |
| Enumerate skills for a tool, or across all detected tools |
| Read a skill's full SKILL.md |
| Fuzzy-search skills, plugins, and marketplace catalogs |
| Registry of supported CLI agents with detected/installed flags |
| Probe a single tool key |
| Register/unregister user-defined CLI agents |
| Manage the default tool used when no |
| Symlink/copy a skill from one tool to others |
| List installed Claude Code plugins |
| Toggle a Claude Code plugin |
| Manage Claude Code plugins |
| List Claude Code marketplaces |
| Show plugins offered by a marketplace |
| Manage Claude Code marketplaces |
|
|
Restart caveat: Most CLI agents read their skill state at session start. Mutating tools (
enable,install,sync) returnrequiresRestart: true— restart the affected agent for changes to take effect.
For HTTP transport instead of stdio:
swarmskills-mcp-http --port 4100Supported tools (built-in)
Key | Display name | Default skills dir |
| Claude Code |
|
| Cursor |
|
| Codex |
|
| Goose |
|
| Gemini CLI |
|
| GitHub Copilot |
|
| Windsurf |
|
| OpenCode |
|
| OpenHands |
|
| Qwen Code |
|
| Cline |
|
| Continue |
|
| Crush |
|
| iFlow CLI |
|
| Junie |
|
| Kiro CLI |
|
| Kode |
|
| Roo Code |
|
| Kilo Code |
|
| Antigravity |
|
| Amp |
|
| Droid |
|
| Firebender |
|
| Replit |
|
| Warp |
|
| Augment |
|
| IBM Bob |
|
| CodeBuddy |
|
| Command Code |
|
| Cortex Code |
|
| Deep Agents |
|
| Kimi Code CLI |
|
| MCPJam |
|
| Mistral Vibe |
|
| Mux |
|
| Neovate |
|
| OpenClaw |
|
| Pi |
|
| Pochi |
|
| Qoder |
|
| TRAE IDE |
|
| TRAE CN |
|
| Zencoder |
|
| AdaL |
|
| Hermes Agent |
|
Path list cribbed from xingkongliang/skills-manager — credit where due.
.config/... paths also honour XDG_CONFIG_HOME when set. Need a tool that's not on this list? swarmskills tools add-custom <key> <skillsDir>.
How it works
For each tool, swarmskills resolves the on-disk skills directory and parses the YAML frontmatter from each SKILL.md. Claude Code additionally has plugin-bundled skills under ~/.claude/plugins/cache/<marketplace>/<plugin>/skills/, surfaced via the same list_skills API.
State managed:
~/.claude/skills/— Claude Code standalone skills~/.claude/plugins/installed_plugins.json— Claude plugin registry~/.claude/plugins/known_marketplaces.json— Claude marketplace registry~/.claude/settings.jsonenabledPlugins— Claude per-plugin enabled flags~/.config/swarmskills/config.json— swarmskills's own config (custom tools, defaults)
All writes are atomic (write to .tmp then rename).
To run against a non-default home for testing:
SWARMSKILLS_HOME=/path/to/fake-home swarmskills tools listDevelopment
pnpm install
pnpm test
pnpm buildLicense
MIT © SwarmClaw AI
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/swarmclawai/swarmskills'
If you have feedback or need assistance with the MCP directory API, please join our Discord server