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
28 changes: 27 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)** — project-scoped `.md` SubAgents in `.qwen/agents/`

## Quick Install

Expand All @@ -30,9 +31,14 @@ supported agentic coding tools.
# Gemini CLI needs generated integration files on a fresh clone
./scripts/convert.sh --tool gemini-cli
./scripts/install.sh --tool gemini-cli

# Qwen Code also needs generated SubAgent files on a fresh clone
./scripts/convert.sh --tool qwen
./scripts/install.sh --tool qwen
```

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

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

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

---

## Qwen Code

Each agent becomes a project-scoped `.md` SubAgent file in `.qwen/agents/`.

From a fresh clone, generate the Qwen files first:

```bash
./scripts/convert.sh --tool qwen
```

Then install them from your project root:

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

See [qwen/README.md](qwen/README.md) for details.
43 changes: 43 additions & 0 deletions integrations/qwen/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Qwen Code Integration

Qwen Code uses project-scoped `.md` SubAgent files in `.qwen/agents/`.

The generated files come from `scripts/convert.sh --tool qwen`, which writes one
SubAgent Markdown file per agency agent into `integrations/qwen/agents/`.

## Generate

From the repository root:

```bash
./scripts/convert.sh --tool qwen
```

## Install

Run the installer from your target project root:

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

This copies the generated SubAgent files into:

```text
.qwen/agents/
```

## Refresh in Qwen Code

After installation:

- run `/agents manage` in Qwen Code to refresh the agent list, or
- restart the current Qwen Code session

## Notes

- Qwen Code is project-scoped, not home-scoped
- The generated Qwen files use minimal frontmatter: `name`, `description`, and
optional `tools`
- If you update agents in this repo, regenerate the Qwen output before
reinstalling