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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,7 @@ Built-ins:
| `kiro` | native (`kiro-cli acp`) | [Kiro CLI](https://kiro.dev) |
| `opencode` | `npx -y opencode-ai acp` | [OpenCode](https://opencode.ai) |
| `qwen` | native (`qwen --acp`) | [Qwen Code](https://github.com/QwenLM/qwen-code) |
| `trae` | native (`trae-cli acp serve`) | [Trae CLI](https://docs.trae.cn/cli) |

`factory-droid` and `factorydroid` also resolve to the built-in `droid` adapter.

Expand Down
2 changes: 2 additions & 0 deletions agents/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Built-in agents:
- `kiro -> kiro-cli acp`
- `opencode -> npx -y opencode-ai acp`
- `qwen -> qwen --acp`
- `trae -> trae-cli acp serve`

Harness-specific docs in this directory:

Expand All @@ -30,3 +31,4 @@ Harness-specific docs in this directory:
- [Kiro](Kiro.md): built-in `kiro -> kiro-cli acp`
- [OpenCode](OpenCode.md): built-in `opencode -> npx -y opencode-ai acp`
- [Qwen](Qwen.md): built-in `qwen -> qwen --acp`
- [Trae](Trae.md): built-in `trae -> trae-cli acp serve`
5 changes: 5 additions & 0 deletions agents/Trae.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Trae

- Built-in name: `trae`
- Default command: `trae-cli acp serve`
- Upstream: https://docs.trae.cn/cli
1 change: 1 addition & 0 deletions src/agent-registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export const AGENT_REGISTRY: Record<string, string> = {
kiro: "kiro-cli acp",
opencode: "npx -y opencode-ai acp",
qwen: "qwen --acp",
trae: "trae-cli acp serve",
};

const AGENT_ALIASES: Record<string, string> = {
Expand Down
1 change: 1 addition & 0 deletions test/agent-registry.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ test("listBuiltInAgents preserves the required example prefix and alphabetical t
"kiro",
"opencode",
"qwen",
"trae",
]);
});

Expand Down