agent-add lets you install virtually every type of AI capability across tools — so you can focus on what to install and where, without worrying about each tool's config file format.
It's especially useful when:
- You're an AI capability developer shipping MCP servers, slash commands, sub-agents, or skills
- Your team uses multiple AI coding tools side by side
You can also use agent-add simply to configure your own AI coding tool — no need to dig into its config file format.
Getting Started
agent-add runs directly via npx — no install required:
npx -y agent-add --skill 'https://github.com/anthropics/skills.git#skills/pdf'
agent-add requires Node.js. Make sure it's installed on your machine.
Here's a more complete example:
npx -y agent-add \
--mcp '{"playwright":{"command":"npx","args":["-y","@playwright/mcp"]}}' \
--mcp 'https://github.com/modelcontextprotocol/servers.git#.mcp.json' \
--skill 'https://github.com/anthropics/skills.git#skills/pdf' \
--prompt $'# Code Review Rules\n\nAlways review for security issues first.' \
--command 'https://github.com/wshobson/commands.git#tools/security-scan.md' \
--sub-agent 'https://github.com/VoltAgent/awesome-claude-code-subagents.git#categories/01-core-development/backend-developer.md'
For full usage details, check the project README, or just run:
npx -y agent-add --help
Project & Supported Tools
The source code is hosted on GitHub: https://github.com/pea3nut/agent-add
Here's the current support matrix:
| AI Tool | MCP | Prompt | Skill | Command | Sub-agent |
|---|---|---|---|---|---|
| Cursor | ✅ | ✅ | ✅ | ✅ | ✅ |
| Claude Code | ✅ | ✅ | ✅ | ✅ | ✅ |
| Trae | ✅ | ✅ | ✅ | ❌ | ❌ |
| Qwen Code | ✅ | ✅ | ✅ | ✅ | ✅ |
| GitHub Copilot | ✅ | ✅ | ✅ | ✅ | ✅ |
| Codex CLI | ✅ | ✅ | ✅ | ❌ | ✅ |
| Windsurf | ✅ | ✅ | ✅ | ✅ | ❌ |
| Gemini CLI | ✅ | ✅ | ✅ | ✅ | ✅ |
| Kimi Code | ✅ | ✅ | ✅ | ❌ | ❌ |
| Augment | ✅ | ✅ | ✅ | ✅ | ✅ |
| Roo Code | ✅ | ✅ | ✅ | ✅ | ❌ |
| Kiro CLI | ✅ | ✅ | ✅ | ❌ | ✅ |
| Tabnine CLI | ✅ | ✅ | ❌ | ✅ | ❌ |
| Kilo Code | ✅ | ✅ | ✅ | ✅ | ✅ |
| opencode | ✅ | ✅ | ✅ | ✅ | ✅ |
| OpenClaw | ❌ | ✅ | ✅ | ❌ | ❌ |
| Mistral Vibe | ✅ | ✅ | ✅ | ❌ | ❌ |
| Claude Desktop | ✅ | ❌ | ❌ | ❌ | ❌ |

Top comments (0)