DEV Community

Peanut Pie
Peanut Pie

Posted on

Install Sub-agents, Skills, MCP Servers, Slash Commands and Prompts Across AI Tools with agent-add

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'
Enter fullscreen mode Exit fullscreen mode

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'
Enter fullscreen mode Exit fullscreen mode

For full usage details, check the project README, or just run:

npx -y agent-add --help
Enter fullscreen mode Exit fullscreen mode

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)