Skip to content
57 changes: 57 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -592,6 +592,11 @@ Agents are copied directly from the repo into `~/.claude/agents/` -- no conversi
./scripts/install.sh --tool claude-code
```

**Windows:**
```cmd
scripts\install.bat -Tool claude-code
```

Then activate in Claude Code:
```
Use the Frontend Developer agent to review this component.
Expand All @@ -609,6 +614,11 @@ Agents are copied directly from the repo into `~/.github/agents/` and `~/.copilo
./scripts/install.sh --tool copilot
```

**Windows:**
```cmd
scripts\install.bat -Tool copilot
```

Then activate in GitHub Copilot:
```
Use the Frontend Developer agent to review this component.
Expand All @@ -626,6 +636,11 @@ Each agent becomes a skill in `~/.gemini/antigravity/skills/agency-<slug>/`.
./scripts/install.sh --tool antigravity
```

**Windows:**
```cmd
scripts\install.bat -Tool antigravity
```

Activate in Gemini with Antigravity:
```
@agency-frontend-developer review this React component
Expand All @@ -645,6 +660,12 @@ On a fresh clone, generate the Gemini extension files before running the install
./scripts/install.sh --tool gemini-cli
```

**Windows:**
```cmd
scripts\convert.bat -Tool gemini-cli
scripts\install.bat -Tool gemini-cli
```

See [integrations/gemini-cli/README.md](integrations/gemini-cli/README.md) for details.
</details>

Expand All @@ -658,6 +679,12 @@ cd /your/project
/path/to/agency-agents/scripts/install.sh --tool opencode
```

**Windows:**
```cmd
cd /d C:\your\project
D:\path\to\agency-agents\scripts\install.bat -Tool opencode
```

Or install globally:
```bash
mkdir -p ~/.config/opencode/agents
Expand All @@ -682,6 +709,12 @@ cd /your/project
/path/to/agency-agents/scripts/install.sh --tool cursor
```

**Windows:**
```cmd
cd /d C:\your\project
D:\path\to\agency-agents\scripts\install.bat -Tool cursor
```

Rules are auto-applied when Cursor detects them in the project. Reference them explicitly:
```
Use the @security-engineer rules to review this code.
Expand All @@ -700,6 +733,12 @@ cd /your/project
/path/to/agency-agents/scripts/install.sh --tool aider
```

**Windows:**
```cmd
cd /d C:\your\project
D:\path\to\agency-agents\scripts\install.bat -Tool aider
```

Then reference agents in your Aider session:
```
Use the Frontend Developer agent to refactor this component.
Expand All @@ -718,6 +757,12 @@ cd /your/project
/path/to/agency-agents/scripts/install.sh --tool windsurf
```

**Windows:**
```cmd
cd /d C:\your\project
D:\path\to\agency-agents\scripts\install.bat -Tool windsurf
```

Reference agents in Windsurf's Cascade:
```
Use the Reality Checker agent to verify this is production ready.
Expand All @@ -735,6 +780,11 @@ Each agent becomes a workspace with `SOUL.md`, `AGENTS.md`, and `IDENTITY.md` in
./scripts/install.sh --tool openclaw
```

**Windows:**
```cmd
scripts\install.bat -Tool openclaw
```

Agents are registered and available by `agentId` in OpenClaw sessions.

See [integrations/openclaw/README.md](integrations/openclaw/README.md) for details.
Expand All @@ -753,6 +803,13 @@ cd /your/project
./scripts/install.sh --tool qwen
```

**Windows:**
```cmd
cd /d C:\your\project
D:\path\to\agency-agents\scripts\convert.bat -Tool qwen
D:\path\to\agency-agents\scripts\install.bat -Tool qwen
```

**Usage in Qwen Code:**
- Reference by name: `Use the frontend-developer agent to review this component`
- Or let Qwen auto-delegate based on task context
Expand Down
18 changes: 17 additions & 1 deletion integrations/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ supported agentic coding tools.
- **[Cursor](#cursor)** — `.mdc` rule files in `cursor/`
- **[Aider](#aider)** — `CONVENTIONS.md` in `aider/`
- **[Windsurf](#windsurf)** — `.windsurfrules` in `windsurf/`
- **[Qwen Code](#qwen-code)** — SubAgent `.md` files in `qwen/`

## Quick Install

Expand All @@ -32,7 +33,9 @@ supported agentic coding tools.
./scripts/install.sh --tool gemini-cli
```

For project-scoped tools such as OpenCode, Cursor, Aider, and Windsurf, run
Windows examples are in the main README under [Tool-Specific Instructions](../README.md#tool-specific-instructions).

For project-scoped tools such as OpenCode, Cursor, Aider, Windsurf, and Qwen, run
the installer from your target project root as shown in the tool-specific
sections below.

Expand Down Expand Up @@ -172,3 +175,16 @@ cd /your/project && /path/to/agency-agents/scripts/install.sh --tool windsurf
```

See [windsurf/README.md](windsurf/README.md) for details.

---

## Qwen Code

SubAgents are generated as `.md` files and installed to `.qwen/agents/` in
your project root.

```bash
cd /your/project && /path/to/agency-agents/scripts/convert.sh --tool qwen && /path/to/agency-agents/scripts/install.sh --tool qwen
```

See [../README.md#tool-specific-instructions](../README.md#tool-specific-instructions) for usage details.
6 changes: 6 additions & 0 deletions scripts/convert.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@echo off
setlocal

set "SCRIPT_DIR=%~dp0"
powershell -NoProfile -ExecutionPolicy Bypass -File "%SCRIPT_DIR%convert.ps1" %*
exit /b %ERRORLEVEL%
Loading