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 @@ -124,6 +124,7 @@ The only prerequisite is the underlying coding agent you want to use:
- `acpx claude` -> Claude Code: https://claude.ai/code
- `acpx gemini` -> Gemini CLI: https://github.com/google/gemini-cli
- `acpx opencode` -> OpenCode: https://opencode.ai
- `acpx kiro` -> Kiro CLI: https://kiro.dev
- `acpx pi` -> Pi Coding Agent: https://github.com/mariozechner/pi

## Usage examples
Expand Down
1 change: 1 addition & 0 deletions src/agent-registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ export const AGENT_REGISTRY: Record<string, string> = {
claude: "npx -y @zed-industries/claude-agent-acp",
gemini: "gemini",
opencode: "npx -y opencode-ai acp",
kiro: "kiro-cli acp",
pi: "npx pi-acp",
};

Expand Down
7 changes: 4 additions & 3 deletions test/agent-registry.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ test("resolveAgentCommand maps known agents to commands", () => {
["claude", "npx -y @zed-industries/claude-agent-acp"],
["gemini", "gemini"],
["opencode", "npx -y opencode-ai acp"],
["kiro", "kiro-cli acp"],
["pi", "npx pi-acp"],
]);

Expand All @@ -24,12 +25,12 @@ test("resolveAgentCommand returns raw value for unknown agents", () => {
assert.equal(resolveAgentCommand("custom-acp-server"), "custom-acp-server");
});

test("listBuiltInAgents returns exactly all 5 registered agent names", () => {
test("listBuiltInAgents returns exactly all 6 registered agent names", () => {
const agents = listBuiltInAgents();
assert.equal(agents.length, 5);
assert.equal(agents.length, 6);
assert.deepEqual(
new Set(agents),
new Set(["codex", "claude", "gemini", "opencode", "pi"]),
new Set(["codex", "claude", "gemini", "kiro", "opencode", "pi"]),
);
});

Expand Down