Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
package-lock.json
yarn.lock

# Python (if adding scripts)
Expand Down Expand Up @@ -57,6 +56,10 @@ dist/
build/
*.egg-info/

# MCP Server
mcp-server/dist/
mcp-server/node_modules/

# Personal notes and scratch files
scratch/
notes/
Expand All @@ -71,6 +74,12 @@ integrations/gemini-cli/skills/
integrations/gemini-cli/gemini-extension.json
integrations/opencode/agents/
integrations/cursor/rules/
integrations/trae/rules/
integrations/mcp-server/trae-mcp-config.json
integrations/mcp-server/cursor-mcp-config.json
integrations/mcp-server/claude-mcp-config.json
.trae/*
.omx/
integrations/aider/CONVENTIONS.md
integrations/windsurf/.windsurfrules
integrations/openclaw/*
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Each agent file contains:

Browse the agents below and copy/adapt the ones you need!

### Option 3: Use with Other Tools (GitHub Copilot, Antigravity, Gemini CLI, OpenCode, OpenClaw, Cursor, Aider, Windsurf, Kimi Code)
### Option 3: Use with Other Tools (GitHub Copilot, Antigravity, Gemini CLI, OpenCode, OpenClaw, Cursor, Aider, Windsurf, Kimi Code, MCP Server)

```bash
# Step 1 -- generate integration files for all supported tools
Expand All @@ -66,6 +66,7 @@ Browse the agents below and copy/adapt the ones you need!
./scripts/install.sh --tool aider
./scripts/install.sh --tool windsurf
./scripts/install.sh --tool kimi
./scripts/install.sh --tool mcp-server
```

See the [Multi-Tool Integrations](#-multi-tool-integrations) section below for full details.
Expand Down Expand Up @@ -555,6 +556,7 @@ The Agency works natively with Claude Code, and ships conversion + install scrip
- **[OpenClaw](https://github.com/openclaw/openclaw)** — `SOUL.md` + `AGENTS.md` + `IDENTITY.md` per agent
- **[Qwen Code](https://github.com/QwenLM/qwen-code)** — `.md` SubAgent files → `~/.qwen/agents/`
- **[Kimi Code](https://github.com/MoonshotAI/kimi-cli)** — YAML agent specs → `~/.config/kimi/agents/`
- **[MCP Server](integrations/mcp-server/README.md)** — Model Context Protocol server → Trae / Cursor / Claude Desktop

---

Expand Down Expand Up @@ -593,7 +595,7 @@ The installer scans your system for installed tools, shows a checkbox UI, and le
[ ] 10) [ ] Qwen Code (~/.qwen/agents)
[ ] 11) [ ] Kimi Code (~/.config/kimi/agents)

[1-11] toggle [a] all [n] none [d] detected
[1-N] toggle [a] all [n] none [d] detected
[Enter] install [q] quit
```

Expand All @@ -603,6 +605,7 @@ The installer scans your system for installed tools, shows a checkbox UI, and le
./scripts/install.sh --tool opencode
./scripts/install.sh --tool openclaw
./scripts/install.sh --tool antigravity
./scripts/install.sh --tool mcp-server
```

**Non-interactive (CI/scripts):**
Expand Down
Loading