Skip to content

Commit 8395692

Browse files
committed
Add new agents with metadata and icons
- Added agents: `kimi`, `cagent`, `goose`, `qwen-code`, `gemini`, `code-assistant`, `claude-code`, `codex` - Included `agent.json` metadata and associated SVG icons - Updated `.gitignore` to exclude `.sandbox/` files
1 parent 16839ad commit 8395692

17 files changed

Lines changed: 266 additions & 0 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Generated files
22
dist/
33

4+
# Verification sandboxes
5+
.sandbox/
6+
47
# Python
58
__pycache__/
69
*.py[cod]

cagent/agent.json

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
"id": "cagent",
3+
"name": "Docker cagent",
4+
"version": "1.15.3",
5+
"description": "Docker's AI coding agent",
6+
"repository": "https://github.com/docker/cagent",
7+
"authors": ["Docker"],
8+
"license": "Apache-2.0",
9+
"distribution": {
10+
"binary": {
11+
"darwin-aarch64": {
12+
"archive": "https://github.com/docker/cagent/releases/download/v1.15.3/cagent-darwin-arm64",
13+
"cmd": "./cagent",
14+
"args": ["acp"]
15+
},
16+
"darwin-x86_64": {
17+
"archive": "https://github.com/docker/cagent/releases/download/v1.15.3/cagent-darwin-amd64",
18+
"cmd": "./cagent",
19+
"args": ["acp"]
20+
},
21+
"linux-aarch64": {
22+
"archive": "https://github.com/docker/cagent/releases/download/v1.15.3/cagent-linux-arm64",
23+
"cmd": "./cagent",
24+
"args": ["acp"]
25+
},
26+
"linux-x86_64": {
27+
"archive": "https://github.com/docker/cagent/releases/download/v1.15.3/cagent-linux-amd64",
28+
"cmd": "./cagent",
29+
"args": ["acp"]
30+
},
31+
"windows-aarch64": {
32+
"archive": "https://github.com/docker/cagent/releases/download/v1.15.3/cagent-windows-arm64.exe",
33+
"cmd": "./cagent.exe",
34+
"args": ["acp"]
35+
},
36+
"windows-x86_64": {
37+
"archive": "https://github.com/docker/cagent/releases/download/v1.15.3/cagent-windows-amd64.exe",
38+
"cmd": "./cagent.exe",
39+
"args": ["acp"]
40+
}
41+
}
42+
}
43+
}

cagent/icon.svg

Lines changed: 3 additions & 0 deletions
Loading

claude-code/agent.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"id": "claude-code",
3+
"name": "Claude Code",
4+
"version": "0.12.6",
5+
"description": "ACP wrapper for Anthropic's Claude",
6+
"repository": "https://github.com/anthropics/claude-code",
7+
"authors": ["Anthropic"],
8+
"license": "proprietary",
9+
"distribution": {
10+
"npx": {
11+
"package": "@zed-industries/claude-code-acp"
12+
},
13+
"bunx": {
14+
"package": "@zed-industries/claude-code-acp"
15+
}
16+
}
17+
}

claude-code/icon.svg

Lines changed: 3 additions & 0 deletions
Loading

code-assistant/agent.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"id": "code-assistant",
3+
"name": "Code Assistant",
4+
"version": "0.1.19",
5+
"description": "AI-powered coding assistant",
6+
"repository": "https://github.com/stippi/code-assistant",
7+
"authors": ["Stephan Aßmus"],
8+
"license": "MIT",
9+
"distribution": {
10+
"binary": {
11+
"darwin-aarch64": {
12+
"archive": "https://github.com/stippi/code-assistant/releases/download/v0.1.19/code-assistant-macos-aarch64.zip",
13+
"cmd": "./code-assistant",
14+
"args": ["acp"]
15+
},
16+
"darwin-x86_64": {
17+
"archive": "https://github.com/stippi/code-assistant/releases/download/v0.1.19/code-assistant-macos-x86_64.zip",
18+
"cmd": "./code-assistant",
19+
"args": ["acp"]
20+
},
21+
"linux-x86_64": {
22+
"archive": "https://github.com/stippi/code-assistant/releases/download/v0.1.19/code-assistant-linux-x86_64.zip",
23+
"cmd": "./code-assistant",
24+
"args": ["acp"]
25+
},
26+
"windows-x86_64": {
27+
"archive": "https://github.com/stippi/code-assistant/releases/download/v0.1.19/code-assistant-windows-x86_64.zip",
28+
"cmd": "./code-assistant.exe",
29+
"args": ["--acp"]
30+
}
31+
}
32+
}
33+
}

code-assistant/icon.svg

Lines changed: 3 additions & 0 deletions
Loading

codex/agent.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"id": "codex",
3+
"name": "Codex CLI",
4+
"version": "0.7.3",
5+
"description": "ACP adapter for OpenAI's coding assistant",
6+
"repository": "https://github.com/zed-industries/codex-acp",
7+
"authors": ["OpenAI", "Zed Industries"],
8+
"license": "Apache-2.0",
9+
"distribution": {
10+
"binary": {
11+
"darwin-aarch64": {
12+
"archive": "https://github.com/zed-industries/codex-acp/releases/download/v0.7.3/codex-acp-0.7.3-aarch64-apple-darwin.tar.gz",
13+
"cmd": "./codex-acp"
14+
},
15+
"darwin-x86_64": {
16+
"archive": "https://github.com/zed-industries/codex-acp/releases/download/v0.7.3/codex-acp-0.7.3-x86_64-apple-darwin.tar.gz",
17+
"cmd": "./codex-acp"
18+
},
19+
"linux-aarch64": {
20+
"archive": "https://github.com/zed-industries/codex-acp/releases/download/v0.7.3/codex-acp-0.7.3-aarch64-unknown-linux-gnu.tar.gz",
21+
"cmd": "./codex-acp"
22+
},
23+
"linux-x86_64": {
24+
"archive": "https://github.com/zed-industries/codex-acp/releases/download/v0.7.3/codex-acp-0.7.3-x86_64-unknown-linux-gnu.tar.gz",
25+
"cmd": "./codex-acp"
26+
},
27+
"windows-aarch64": {
28+
"archive": "https://github.com/zed-industries/codex-acp/releases/download/v0.7.3/codex-acp-0.7.3-aarch64-pc-windows-msvc.zip",
29+
"cmd": "./codex-acp.exe"
30+
},
31+
"windows-x86_64": {
32+
"archive": "https://github.com/zed-industries/codex-acp/releases/download/v0.7.3/codex-acp-0.7.3-x86_64-pc-windows-msvc.zip",
33+
"cmd": "./codex-acp.exe"
34+
}
35+
}
36+
}
37+
}

codex/icon.svg

Lines changed: 3 additions & 0 deletions
Loading

gemini/agent.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"id": "gemini",
3+
"name": "Gemini CLI",
4+
"version": "0.21.0",
5+
"description": "Google's official CLI for Gemini",
6+
"repository": "https://github.com/google-gemini/gemini-cli",
7+
"authors": ["Google"],
8+
"license": "Apache-2.0",
9+
"distribution": {
10+
"npx": {
11+
"package": "@google/gemini-cli@0.21.0",
12+
"args": ["--experimental-acp"]
13+
},
14+
"bunx": {
15+
"package": "@google/gemini-cli@0.21.0",
16+
"args": ["--experimental-acp"]
17+
}
18+
}
19+
}

0 commit comments

Comments
 (0)