Auto-sync: 2026-04-21 00:02
This commit is contained in:
@@ -15,6 +15,7 @@ supported agentic coding tools.
|
||||
- **[Aider](#aider)** — `CONVENTIONS.md` in `aider/`
|
||||
- **[Windsurf](#windsurf)** — `.windsurfrules` in `windsurf/`
|
||||
- **[Kimi Code](#kimi-code)** — YAML agent specs in `kimi/`
|
||||
- **[Qwen Code](#qwen-code)** — project-scoped `.md` SubAgents in `.qwen/agents/`
|
||||
|
||||
## Quick Install
|
||||
|
||||
@@ -31,9 +32,20 @@ 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
|
||||
If you install OpenClaw and the gateway is already running, restart it after installation:
|
||||
|
||||
```bash
|
||||
openclaw gateway restart
|
||||
```
|
||||
|
||||
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.
|
||||
|
||||
@@ -206,3 +218,23 @@ kimi --agent-file ~/.config/kimi/agents/frontend-developer/agent.yaml \
|
||||
```
|
||||
|
||||
See [kimi/README.md](kimi/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.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# Aider Integration
|
||||
|
||||
All 61 Agency agents are consolidated into a single `CONVENTIONS.md` file.
|
||||
The full Agency roster is consolidated into a single `CONVENTIONS.md` file.
|
||||
Aider reads this file automatically when it's present in your project root.
|
||||
|
||||
## Install
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# Antigravity Integration
|
||||
|
||||
Installs all 61 Agency agents as Antigravity skills. Each agent is prefixed
|
||||
Installs the full Agency roster as Antigravity skills. Each agent is prefixed
|
||||
with `agency-` to avoid conflicts with existing skills.
|
||||
|
||||
## Install
|
||||
|
||||
@@ -28,4 +28,4 @@ Use the Reality Checker agent to verify this feature is production-ready.
|
||||
## Agent Directory
|
||||
|
||||
Agents are organized into divisions. See the [main README](../../README.md) for
|
||||
the full current roster.
|
||||
the full Agency roster.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# Cursor Integration
|
||||
|
||||
Converts all 61 Agency agents into Cursor `.mdc` rule files. Rules are
|
||||
Converts the full Agency roster into Cursor `.mdc` rule files. Rules are
|
||||
**project-scoped** — install them from your project root.
|
||||
|
||||
## Install
|
||||
|
||||
@@ -48,11 +48,12 @@ color: "#00FFFF"
|
||||
## Project vs Global
|
||||
|
||||
Agents in `.opencode/agents/` are **project-scoped**. To make them available
|
||||
globally across all projects, copy them to your OpenCode config directory:
|
||||
globally across all projects, first generate the agent files, then install
|
||||
with `--path`:
|
||||
|
||||
```bash
|
||||
mkdir -p ~/.config/opencode/agents
|
||||
cp integrations/opencode/agents/*.md ~/.config/opencode/agents/
|
||||
./scripts/convert.sh --tool opencode
|
||||
./scripts/install.sh --tool opencode --path ~/.config/opencode/agents
|
||||
```
|
||||
|
||||
## Regenerate
|
||||
|
||||
43
raw/Agent/agency-agents/integrations/qwen/README.md
Normal file
43
raw/Agent/agency-agents/integrations/qwen/README.md
Normal file
@@ -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
|
||||
@@ -1,6 +1,6 @@
|
||||
# Windsurf Integration
|
||||
|
||||
All 61 Agency agents are consolidated into a single `.windsurfrules` file.
|
||||
The full Agency roster is consolidated into a single `.windsurfrules` file.
|
||||
Rules are **project-scoped** — install them from your project root.
|
||||
|
||||
## Install
|
||||
|
||||
Reference in New Issue
Block a user