Auto-sync: 2026-04-21 00:02

This commit is contained in:
2026-04-21 00:02:55 +08:00
parent 177469a1cd
commit cb7c11e14f
235 changed files with 16567 additions and 237 deletions

View File

@@ -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.