martty 0.2.33 → 0.2.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +108 -11
- package/bin/martty.js +52 -5
- package/lib/acp-client.js +296 -20
- package/lib/acp-registry.snapshot.json +1450 -0
- package/lib/acp-session-config.js +23 -0
- package/lib/acp-session-plan.js +14 -2
- package/lib/acp-session-stats.js +22 -5
- package/lib/acp-session-status.js +70 -25
- package/lib/agent.js +24 -4
- package/lib/boot.js +29 -5
- package/lib/command-args.js +28 -0
- package/lib/download.js +165 -0
- package/lib/harness-discovery.js +41 -0
- package/lib/harness-package.js +200 -0
- package/lib/harness-registry.js +468 -0
- package/lib/harness-removal.js +88 -0
- package/lib/harness-view.js +639 -46
- package/lib/harnesses.js +1053 -41
- package/lib/index.js +4 -0
- package/lib/mux.js +23 -0
- package/lib/plan-view.js +18 -3
- package/lib/status-view.js +2 -0
- package/lib/tui-commands.js +7 -1
- package/lib/tui-overlay.js +27 -5
- package/package.json +7 -4
- package/vendor/darwin-arm64/martty +0 -0
- package/vendor/darwin-x64/martty +0 -0
- package/vendor/linux-arm64/martty +0 -0
- package/vendor/linux-x64/martty +0 -0
- package/vendor/win32-x64/martty.exe +0 -0
|
@@ -0,0 +1,1450 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0.0",
|
|
3
|
+
"agents": [
|
|
4
|
+
{
|
|
5
|
+
"id": "agoragentic-acp",
|
|
6
|
+
"name": "Agoragentic",
|
|
7
|
+
"version": "1.3.0",
|
|
8
|
+
"description": "Agent marketplace with 174+ AI capabilities. Browse, invoke, and pay for agent services settled in USDC on Base L2.",
|
|
9
|
+
"repository": "https://github.com/rhein1/agoragentic-integrations",
|
|
10
|
+
"website": "https://agoragentic.com",
|
|
11
|
+
"authors": [
|
|
12
|
+
"ACRE / Agoragentic"
|
|
13
|
+
],
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"license_url": "https://github.com/rhein1/agoragentic-integrations/blob/main/LICENSE",
|
|
16
|
+
"distribution": {
|
|
17
|
+
"npx": {
|
|
18
|
+
"package": "agoragentic-mcp@1.3.0",
|
|
19
|
+
"args": [
|
|
20
|
+
"--acp"
|
|
21
|
+
]
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/agoragentic-acp.svg"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"id": "amp-acp",
|
|
28
|
+
"name": "Amp",
|
|
29
|
+
"version": "0.9.0",
|
|
30
|
+
"description": "ACP wrapper for Amp - the frontier coding agent",
|
|
31
|
+
"repository": "https://github.com/tao12345666333/amp-acp",
|
|
32
|
+
"authors": [
|
|
33
|
+
"tao12345666333"
|
|
34
|
+
],
|
|
35
|
+
"license": "Apache-2.0",
|
|
36
|
+
"license_url": "https://github.com/tao12345666333/amp-acp/blob/main/LICENSE",
|
|
37
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/amp-acp.svg",
|
|
38
|
+
"distribution": {
|
|
39
|
+
"binary": {
|
|
40
|
+
"darwin-aarch64": {
|
|
41
|
+
"archive": "https://github.com/tao12345666333/amp-acp/releases/download/v0.9.0/amp-acp-darwin-aarch64.tar.gz",
|
|
42
|
+
"cmd": "./amp-acp",
|
|
43
|
+
"sha256": "240a1a464f2a400ae51e9613b7f52b2abb6e7a29759001e9185291325671ccf1"
|
|
44
|
+
},
|
|
45
|
+
"darwin-x86_64": {
|
|
46
|
+
"archive": "https://github.com/tao12345666333/amp-acp/releases/download/v0.9.0/amp-acp-darwin-x86_64.tar.gz",
|
|
47
|
+
"cmd": "./amp-acp",
|
|
48
|
+
"sha256": "0dc6d1ab8054e09b10ef49eea3e61afe363473d785bc9682ecb997480ec2f61f"
|
|
49
|
+
},
|
|
50
|
+
"linux-aarch64": {
|
|
51
|
+
"archive": "https://github.com/tao12345666333/amp-acp/releases/download/v0.9.0/amp-acp-linux-aarch64.tar.gz",
|
|
52
|
+
"cmd": "./amp-acp",
|
|
53
|
+
"sha256": "b9e365221838b1a6e177c2fcd8f25a30086c3630e0330f1f6f74b25d2d4126c2"
|
|
54
|
+
},
|
|
55
|
+
"linux-x86_64": {
|
|
56
|
+
"archive": "https://github.com/tao12345666333/amp-acp/releases/download/v0.9.0/amp-acp-linux-x86_64.tar.gz",
|
|
57
|
+
"cmd": "./amp-acp",
|
|
58
|
+
"sha256": "afaa50a152eb86a8ff21e354ded63fe2d21b730859692e3a60b2c4c9ef23df31"
|
|
59
|
+
},
|
|
60
|
+
"windows-x86_64": {
|
|
61
|
+
"archive": "https://github.com/tao12345666333/amp-acp/releases/download/v0.9.0/amp-acp-windows-x86_64.zip",
|
|
62
|
+
"cmd": "amp-acp.exe",
|
|
63
|
+
"sha256": "3b2c3d14d703fcf9572da9733e4941703a7744bd37ec4aaa75421d6002c0157b"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"id": "antigravity-acp",
|
|
70
|
+
"name": "Google Antigravity",
|
|
71
|
+
"version": "1.1.1",
|
|
72
|
+
"description": "Google’s AI coding agent",
|
|
73
|
+
"website": "https://antigravity.google/docs/ide/extensions",
|
|
74
|
+
"authors": [
|
|
75
|
+
"Google LLC"
|
|
76
|
+
],
|
|
77
|
+
"license": "proprietary",
|
|
78
|
+
"license_url": "https://antigravity.google/terms",
|
|
79
|
+
"distribution": {
|
|
80
|
+
"binary": {
|
|
81
|
+
"darwin-aarch64": {
|
|
82
|
+
"archive": "https://dl.google.com/agy-extensions/releases/macos/agy-acp-server-agy_acp_server_1.1.1-darwin-arm64.zip",
|
|
83
|
+
"cmd": "./agy_acp_server.par"
|
|
84
|
+
},
|
|
85
|
+
"linux-x86_64": {
|
|
86
|
+
"archive": "https://dl.google.com/agy-extensions/releases/linux/agy-acp-server-agy_acp_server_1.1.1-linux-x86_64.zip",
|
|
87
|
+
"cmd": "./agy_acp_server.par",
|
|
88
|
+
"args": [
|
|
89
|
+
"--uid="
|
|
90
|
+
]
|
|
91
|
+
},
|
|
92
|
+
"linux-aarch64": {
|
|
93
|
+
"archive": "https://dl.google.com/agy-extensions/releases/linux/agy-acp-server-agy_acp_server_1.1.1-linux-arm64.zip",
|
|
94
|
+
"cmd": "./agy_acp_server.par",
|
|
95
|
+
"args": [
|
|
96
|
+
"--uid="
|
|
97
|
+
]
|
|
98
|
+
},
|
|
99
|
+
"windows-x86_64": {
|
|
100
|
+
"archive": "https://dl.google.com/agy-extensions/releases/windows/agy-acp-server-agy_acp_server_1.1.1-windows-x86_64.zip",
|
|
101
|
+
"cmd": "./agy_acp_server.exe"
|
|
102
|
+
},
|
|
103
|
+
"windows-aarch64": {
|
|
104
|
+
"archive": "https://dl.google.com/agy-extensions/releases/windows/agy-acp-server-agy_acp_server_1.1.1-windows-arm64.zip",
|
|
105
|
+
"cmd": "./agy_acp_server.exe"
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/antigravity-acp.svg"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"id": "auggie",
|
|
113
|
+
"name": "Auggie CLI",
|
|
114
|
+
"version": "0.36.0",
|
|
115
|
+
"description": "Augment Code's powerful software agent, backed by industry-leading context engine",
|
|
116
|
+
"repository": "https://github.com/augmentcode/auggie",
|
|
117
|
+
"website": "https://www.augmentcode.com/",
|
|
118
|
+
"authors": [
|
|
119
|
+
"Augment Code <support@augmentcode.com>"
|
|
120
|
+
],
|
|
121
|
+
"license": "proprietary",
|
|
122
|
+
"license_url": "https://github.com/augmentcode/auggie/blob/main/LICENSE.md",
|
|
123
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/auggie.svg",
|
|
124
|
+
"distribution": {
|
|
125
|
+
"npx": {
|
|
126
|
+
"package": "@augmentcode/auggie@0.36.0",
|
|
127
|
+
"args": [
|
|
128
|
+
"--acp"
|
|
129
|
+
],
|
|
130
|
+
"env": {
|
|
131
|
+
"AUGMENT_DISABLE_AUTO_UPDATE": "1"
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"id": "autohand",
|
|
138
|
+
"name": "Autohand Code",
|
|
139
|
+
"version": "0.2.1",
|
|
140
|
+
"description": "Autohand Code - AI coding agent powered by Autohand AI",
|
|
141
|
+
"repository": "https://github.com/autohandai/autohand-acp",
|
|
142
|
+
"website": "https://www.autohand.ai/cli/",
|
|
143
|
+
"authors": [
|
|
144
|
+
"Autohand AI"
|
|
145
|
+
],
|
|
146
|
+
"license": "Apache-2.0",
|
|
147
|
+
"license_url": "https://github.com/autohandai/autohand-acp/blob/main/LICENSE",
|
|
148
|
+
"distribution": {
|
|
149
|
+
"npx": {
|
|
150
|
+
"package": "@autohandai/autohand-acp@0.2.1"
|
|
151
|
+
}
|
|
152
|
+
},
|
|
153
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/autohand.svg"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"id": "claude-acp",
|
|
157
|
+
"name": "Claude Agent",
|
|
158
|
+
"version": "0.75.0",
|
|
159
|
+
"description": "ACP wrapper for Anthropic's Claude",
|
|
160
|
+
"repository": "https://github.com/agentclientprotocol/claude-agent-acp",
|
|
161
|
+
"authors": [
|
|
162
|
+
"Anthropic",
|
|
163
|
+
"Zed Industries",
|
|
164
|
+
"JetBrains"
|
|
165
|
+
],
|
|
166
|
+
"license": "proprietary",
|
|
167
|
+
"license_url": "https://github.com/agentclientprotocol/claude-agent-acp/blob/main/LICENSE",
|
|
168
|
+
"distribution": {
|
|
169
|
+
"npx": {
|
|
170
|
+
"package": "@agentclientprotocol/claude-agent-acp@0.75.0"
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/claude-acp.svg"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"id": "cline",
|
|
177
|
+
"name": "Cline",
|
|
178
|
+
"version": "3.0.61",
|
|
179
|
+
"description": "Autonomous coding agent CLI - capable of creating/editing files, running commands, using the browser, and more",
|
|
180
|
+
"repository": "https://github.com/cline/cline",
|
|
181
|
+
"website": "https://cline.bot/cli",
|
|
182
|
+
"authors": [
|
|
183
|
+
"Cline Bot Inc."
|
|
184
|
+
],
|
|
185
|
+
"license": "Apache-2.0",
|
|
186
|
+
"license_url": "https://github.com/cline/cline/blob/main/LICENSE",
|
|
187
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/cline.svg",
|
|
188
|
+
"distribution": {
|
|
189
|
+
"npx": {
|
|
190
|
+
"package": "cline@3.0.61",
|
|
191
|
+
"args": [
|
|
192
|
+
"--acp"
|
|
193
|
+
]
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"id": "codebuddy-code",
|
|
199
|
+
"name": "Codebuddy Code",
|
|
200
|
+
"version": "2.145.0",
|
|
201
|
+
"description": "Tencent Cloud's official intelligent coding tool",
|
|
202
|
+
"website": "https://www.codebuddy.cn/cli/",
|
|
203
|
+
"authors": [
|
|
204
|
+
"Tencent Cloud"
|
|
205
|
+
],
|
|
206
|
+
"license": "Proprietary",
|
|
207
|
+
"distribution": {
|
|
208
|
+
"npx": {
|
|
209
|
+
"package": "@tencent-ai/codebuddy-code@2.145.0",
|
|
210
|
+
"args": [
|
|
211
|
+
"--acp"
|
|
212
|
+
]
|
|
213
|
+
}
|
|
214
|
+
},
|
|
215
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/codebuddy-code.svg"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"id": "codex-acp",
|
|
219
|
+
"name": "Codex",
|
|
220
|
+
"version": "1.10.0",
|
|
221
|
+
"description": "ACP adapter for OpenAI's coding assistant",
|
|
222
|
+
"repository": "https://github.com/agentclientprotocol/codex-acp",
|
|
223
|
+
"authors": [
|
|
224
|
+
"OpenAI",
|
|
225
|
+
"JetBrains s.r.o",
|
|
226
|
+
"Zed Industries"
|
|
227
|
+
],
|
|
228
|
+
"license": "Apache-2.0",
|
|
229
|
+
"license_url": "https://github.com/agentclientprotocol/codex-acp/blob/main/LICENSE",
|
|
230
|
+
"distribution": {
|
|
231
|
+
"npx": {
|
|
232
|
+
"package": "@agentclientprotocol/codex-acp@1.10.0"
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/codex-acp.svg"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"id": "cortex-code",
|
|
239
|
+
"name": "Cortex Code",
|
|
240
|
+
"version": "1.0.73",
|
|
241
|
+
"description": "Snowflake's Cortex Code coding agent",
|
|
242
|
+
"repository": "https://docs.snowflake.com/en/user-guide/cortex-code/cortex-code",
|
|
243
|
+
"authors": [
|
|
244
|
+
"Snowflake"
|
|
245
|
+
],
|
|
246
|
+
"license": "proprietary",
|
|
247
|
+
"distribution": {
|
|
248
|
+
"binary": {
|
|
249
|
+
"darwin-aarch64": {
|
|
250
|
+
"archive": "https://sfc-repo.snowflakecomputing.com/cortex-code-cli/a4643c4278/1.0.73%2B180523.e6179a031de9/coco-1.0.73%2B180523.e6179a031de9-darwin-arm64.tar.gz",
|
|
251
|
+
"cmd": "./coco-1.0.73+180523.e6179a031de9-darwin-arm64/cortex",
|
|
252
|
+
"args": [
|
|
253
|
+
"acp",
|
|
254
|
+
"serve"
|
|
255
|
+
]
|
|
256
|
+
},
|
|
257
|
+
"darwin-x86_64": {
|
|
258
|
+
"archive": "https://sfc-repo.snowflakecomputing.com/cortex-code-cli/a4643c4278/1.0.73%2B180523.e6179a031de9/coco-1.0.73%2B180523.e6179a031de9-darwin-amd64.tar.gz",
|
|
259
|
+
"cmd": "./coco-1.0.73+180523.e6179a031de9-darwin-amd64/cortex",
|
|
260
|
+
"args": [
|
|
261
|
+
"acp",
|
|
262
|
+
"serve"
|
|
263
|
+
]
|
|
264
|
+
},
|
|
265
|
+
"linux-x86_64": {
|
|
266
|
+
"archive": "https://sfc-repo.snowflakecomputing.com/cortex-code-cli/a4643c4278/1.0.73%2B180523.e6179a031de9/coco-1.0.73%2B180523.e6179a031de9-linux-amd64.tar.gz",
|
|
267
|
+
"cmd": "./coco-1.0.73+180523.e6179a031de9-linux-amd64/cortex",
|
|
268
|
+
"args": [
|
|
269
|
+
"acp",
|
|
270
|
+
"serve"
|
|
271
|
+
]
|
|
272
|
+
},
|
|
273
|
+
"linux-aarch64": {
|
|
274
|
+
"archive": "https://sfc-repo.snowflakecomputing.com/cortex-code-cli/a4643c4278/1.0.73%2B180523.e6179a031de9/coco-1.0.73%2B180523.e6179a031de9-linux-arm64.tar.gz",
|
|
275
|
+
"cmd": "./coco-1.0.73+180523.e6179a031de9-linux-arm64/cortex",
|
|
276
|
+
"args": [
|
|
277
|
+
"acp",
|
|
278
|
+
"serve"
|
|
279
|
+
]
|
|
280
|
+
},
|
|
281
|
+
"windows-x86_64": {
|
|
282
|
+
"archive": "https://sfc-repo.snowflakecomputing.com/cortex-code-cli/a4643c4278/1.0.73%2B180523.e6179a031de9/coco-1.0.73%2B180523.e6179a031de9-windows-amd64.tar.gz",
|
|
283
|
+
"cmd": "./coco-1.0.73+180523.e6179a031de9-windows-amd64/cortex.exe",
|
|
284
|
+
"args": [
|
|
285
|
+
"acp",
|
|
286
|
+
"serve"
|
|
287
|
+
]
|
|
288
|
+
},
|
|
289
|
+
"windows-aarch64": {
|
|
290
|
+
"archive": "https://sfc-repo.snowflakecomputing.com/cortex-code-cli/a4643c4278/1.0.73%2B180523.e6179a031de9/coco-1.0.73%2B180523.e6179a031de9-windows-arm64.tar.gz",
|
|
291
|
+
"cmd": "./coco-1.0.73+180523.e6179a031de9-windows-arm64/cortex.exe",
|
|
292
|
+
"args": [
|
|
293
|
+
"acp",
|
|
294
|
+
"serve"
|
|
295
|
+
]
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
},
|
|
299
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/cortex-code.svg"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"id": "corust-agent",
|
|
303
|
+
"name": "Corust Agent",
|
|
304
|
+
"version": "0.6.0",
|
|
305
|
+
"description": "Co-building with a seasoned Rust partner.",
|
|
306
|
+
"repository": "https://github.com/Corust-ai/corust-agent-release",
|
|
307
|
+
"website": "https://corust.ai/",
|
|
308
|
+
"authors": [
|
|
309
|
+
"Corust AI <support@corust.ai>"
|
|
310
|
+
],
|
|
311
|
+
"license": "GPL-3.0-or-later",
|
|
312
|
+
"license_url": "https://github.com/Corust-ai/corust-agent-release/blob/main/LICENSE",
|
|
313
|
+
"distribution": {
|
|
314
|
+
"binary": {
|
|
315
|
+
"darwin-aarch64": {
|
|
316
|
+
"archive": "https://github.com/Corust-ai/corust-agent-release/releases/download/v0.6.0/agent-darwin-arm64.tar.gz",
|
|
317
|
+
"cmd": "./corust-agent-acp"
|
|
318
|
+
},
|
|
319
|
+
"darwin-x86_64": {
|
|
320
|
+
"archive": "https://github.com/Corust-ai/corust-agent-release/releases/download/v0.6.0/agent-darwin-x64.tar.gz",
|
|
321
|
+
"cmd": "./corust-agent-acp"
|
|
322
|
+
},
|
|
323
|
+
"linux-x86_64": {
|
|
324
|
+
"archive": "https://github.com/Corust-ai/corust-agent-release/releases/download/v0.6.0/agent-linux-x64.tar.gz",
|
|
325
|
+
"cmd": "./corust-agent-acp"
|
|
326
|
+
},
|
|
327
|
+
"windows-x86_64": {
|
|
328
|
+
"archive": "https://github.com/Corust-ai/corust-agent-release/releases/download/v0.6.0/agent-windows-x64.zip",
|
|
329
|
+
"cmd": "./corust-agent-acp.exe"
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
},
|
|
333
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/corust-agent.svg"
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"id": "crow-cli",
|
|
337
|
+
"name": "crow-cli",
|
|
338
|
+
"version": "0.1.24",
|
|
339
|
+
"description": "Minimal ACP Native Coding Agent",
|
|
340
|
+
"repository": "https://github.com/crow-cli/crow-cli",
|
|
341
|
+
"website": "https://crow-ai.dev",
|
|
342
|
+
"authors": [
|
|
343
|
+
"Thomas Wood"
|
|
344
|
+
],
|
|
345
|
+
"license": "Apache-2.0",
|
|
346
|
+
"license_url": "https://github.com/crow-cli/crow-cli/blob/main/LICENSE.md",
|
|
347
|
+
"distribution": {
|
|
348
|
+
"binary": {
|
|
349
|
+
"darwin-aarch64": {
|
|
350
|
+
"archive": "https://github.com/crow-cli/crow-cli/releases/download/v0.1.24/crow-cli-darwin-aarch64.tar.gz",
|
|
351
|
+
"cmd": "./crow-cli",
|
|
352
|
+
"args": [
|
|
353
|
+
"acp"
|
|
354
|
+
]
|
|
355
|
+
},
|
|
356
|
+
"darwin-x86_64": {
|
|
357
|
+
"archive": "https://github.com/crow-cli/crow-cli/releases/download/v0.1.24/crow-cli-darwin-x86_64.tar.gz",
|
|
358
|
+
"cmd": "./crow-cli",
|
|
359
|
+
"args": [
|
|
360
|
+
"acp"
|
|
361
|
+
]
|
|
362
|
+
},
|
|
363
|
+
"linux-aarch64": {
|
|
364
|
+
"archive": "https://github.com/crow-cli/crow-cli/releases/download/v0.1.24/crow-cli-linux-aarch64.tar.gz",
|
|
365
|
+
"cmd": "./crow-cli",
|
|
366
|
+
"args": [
|
|
367
|
+
"acp"
|
|
368
|
+
]
|
|
369
|
+
},
|
|
370
|
+
"linux-x86_64": {
|
|
371
|
+
"archive": "https://github.com/crow-cli/crow-cli/releases/download/v0.1.24/crow-cli-linux-x86_64.tar.gz",
|
|
372
|
+
"cmd": "./crow-cli",
|
|
373
|
+
"args": [
|
|
374
|
+
"acp"
|
|
375
|
+
]
|
|
376
|
+
},
|
|
377
|
+
"windows-x86_64": {
|
|
378
|
+
"archive": "https://github.com/crow-cli/crow-cli/releases/download/v0.1.24/crow-cli-windows-x86_64.zip",
|
|
379
|
+
"cmd": "./crow-cli.exe",
|
|
380
|
+
"args": [
|
|
381
|
+
"acp"
|
|
382
|
+
]
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
},
|
|
386
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/crow-cli.svg"
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"id": "cursor",
|
|
390
|
+
"name": "Cursor",
|
|
391
|
+
"version": "2026.09.02",
|
|
392
|
+
"description": "Cursor's coding agent",
|
|
393
|
+
"website": "https://cursor.com/docs/cli/acp",
|
|
394
|
+
"authors": [
|
|
395
|
+
"Cursor"
|
|
396
|
+
],
|
|
397
|
+
"license": "proprietary",
|
|
398
|
+
"license_url": "https://cursor.com/terms-of-service",
|
|
399
|
+
"distribution": {
|
|
400
|
+
"binary": {
|
|
401
|
+
"darwin-aarch64": {
|
|
402
|
+
"archive": "https://downloads.cursor.com/lab/2026.09.02-c22c1a3/darwin/arm64/agent-cli-package.tar.gz",
|
|
403
|
+
"cmd": "./dist-package/cursor-agent",
|
|
404
|
+
"args": [
|
|
405
|
+
"acp"
|
|
406
|
+
]
|
|
407
|
+
},
|
|
408
|
+
"darwin-x86_64": {
|
|
409
|
+
"archive": "https://downloads.cursor.com/lab/2026.09.02-c22c1a3/darwin/x64/agent-cli-package.tar.gz",
|
|
410
|
+
"cmd": "./dist-package/cursor-agent",
|
|
411
|
+
"args": [
|
|
412
|
+
"acp"
|
|
413
|
+
]
|
|
414
|
+
},
|
|
415
|
+
"linux-aarch64": {
|
|
416
|
+
"archive": "https://downloads.cursor.com/lab/2026.09.02-c22c1a3/linux/arm64/agent-cli-package.tar.gz",
|
|
417
|
+
"cmd": "./dist-package/cursor-agent",
|
|
418
|
+
"args": [
|
|
419
|
+
"acp"
|
|
420
|
+
]
|
|
421
|
+
},
|
|
422
|
+
"linux-x86_64": {
|
|
423
|
+
"archive": "https://downloads.cursor.com/lab/2026.09.02-c22c1a3/linux/x64/agent-cli-package.tar.gz",
|
|
424
|
+
"cmd": "./dist-package/cursor-agent",
|
|
425
|
+
"args": [
|
|
426
|
+
"acp"
|
|
427
|
+
]
|
|
428
|
+
},
|
|
429
|
+
"windows-aarch64": {
|
|
430
|
+
"archive": "https://downloads.cursor.com/lab/2026.09.02-c22c1a3/windows/arm64/agent-cli-package.zip",
|
|
431
|
+
"cmd": "./dist-package\\cursor-agent.cmd",
|
|
432
|
+
"args": [
|
|
433
|
+
"acp"
|
|
434
|
+
]
|
|
435
|
+
},
|
|
436
|
+
"windows-x86_64": {
|
|
437
|
+
"archive": "https://downloads.cursor.com/lab/2026.09.02-c22c1a3/windows/x64/agent-cli-package.zip",
|
|
438
|
+
"cmd": "./dist-package\\cursor-agent.cmd",
|
|
439
|
+
"args": [
|
|
440
|
+
"acp"
|
|
441
|
+
]
|
|
442
|
+
}
|
|
443
|
+
}
|
|
444
|
+
},
|
|
445
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/cursor.svg"
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
"id": "deepagents",
|
|
449
|
+
"name": "DeepAgents",
|
|
450
|
+
"version": "0.1.7",
|
|
451
|
+
"description": "Batteries-included AI coding and general purpose agent powered by LangChain.",
|
|
452
|
+
"repository": "https://github.com/langchain-ai/deepagentsjs",
|
|
453
|
+
"website": "https://docs.langchain.com/oss/javascript/deepagents/overview",
|
|
454
|
+
"authors": [
|
|
455
|
+
"LangChain"
|
|
456
|
+
],
|
|
457
|
+
"license": "MIT",
|
|
458
|
+
"license_url": "https://github.com/langchain-ai/deepagentsjs/blob/main/LICENSE",
|
|
459
|
+
"distribution": {
|
|
460
|
+
"npx": {
|
|
461
|
+
"package": "deepagents-acp@0.1.7",
|
|
462
|
+
"args": []
|
|
463
|
+
}
|
|
464
|
+
},
|
|
465
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/deepagents.svg"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"id": "devin",
|
|
469
|
+
"name": "Devin",
|
|
470
|
+
"version": "3000.6.14",
|
|
471
|
+
"description": "Devin CLI coding agent by Cognition",
|
|
472
|
+
"website": "https://docs.devin.ai/cli",
|
|
473
|
+
"authors": [
|
|
474
|
+
"Cognition"
|
|
475
|
+
],
|
|
476
|
+
"license": "proprietary",
|
|
477
|
+
"repository": "https://github.com/CognitionAI/devin-cli",
|
|
478
|
+
"distribution": {
|
|
479
|
+
"binary": {
|
|
480
|
+
"darwin-aarch64": {
|
|
481
|
+
"archive": "https://static.devin.ai/cli/3000.6.14/devin-3000.6.14-aarch64-apple-darwin.tar.gz",
|
|
482
|
+
"cmd": "./bin/devin",
|
|
483
|
+
"args": [
|
|
484
|
+
"acp"
|
|
485
|
+
]
|
|
486
|
+
},
|
|
487
|
+
"darwin-x86_64": {
|
|
488
|
+
"archive": "https://static.devin.ai/cli/3000.6.14/devin-3000.6.14-x86_64-apple-darwin.tar.gz",
|
|
489
|
+
"cmd": "./bin/devin",
|
|
490
|
+
"args": [
|
|
491
|
+
"acp"
|
|
492
|
+
]
|
|
493
|
+
},
|
|
494
|
+
"linux-aarch64": {
|
|
495
|
+
"archive": "https://static.devin.ai/cli/3000.6.14/devin-3000.6.14-aarch64-unknown-linux.tar.gz",
|
|
496
|
+
"cmd": "./bin/devin",
|
|
497
|
+
"args": [
|
|
498
|
+
"acp"
|
|
499
|
+
]
|
|
500
|
+
},
|
|
501
|
+
"linux-x86_64": {
|
|
502
|
+
"archive": "https://static.devin.ai/cli/3000.6.14/devin-3000.6.14-x86_64-unknown-linux.tar.gz",
|
|
503
|
+
"cmd": "./bin/devin",
|
|
504
|
+
"args": [
|
|
505
|
+
"acp"
|
|
506
|
+
]
|
|
507
|
+
},
|
|
508
|
+
"windows-aarch64": {
|
|
509
|
+
"archive": "https://static.devin.ai/cli/3000.6.14/devin-3000.6.14-aarch64-pc-windows.zip",
|
|
510
|
+
"cmd": "./bin\\devin.exe",
|
|
511
|
+
"args": [
|
|
512
|
+
"acp"
|
|
513
|
+
]
|
|
514
|
+
},
|
|
515
|
+
"windows-x86_64": {
|
|
516
|
+
"archive": "https://static.devin.ai/cli/3000.6.14/devin-3000.6.14-x86_64-pc-windows.zip",
|
|
517
|
+
"cmd": "./bin\\devin.exe",
|
|
518
|
+
"args": [
|
|
519
|
+
"acp"
|
|
520
|
+
]
|
|
521
|
+
}
|
|
522
|
+
}
|
|
523
|
+
},
|
|
524
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/devin.svg"
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
"id": "dimcode",
|
|
528
|
+
"name": "DimCode",
|
|
529
|
+
"version": "0.3.28",
|
|
530
|
+
"description": "A coding agent that puts leading models at your command.",
|
|
531
|
+
"website": "https://dimcode.dev/docs/acp.html",
|
|
532
|
+
"authors": [
|
|
533
|
+
"ArcShips"
|
|
534
|
+
],
|
|
535
|
+
"license": "proprietary",
|
|
536
|
+
"distribution": {
|
|
537
|
+
"npx": {
|
|
538
|
+
"package": "dimcode@0.3.28",
|
|
539
|
+
"args": [
|
|
540
|
+
"acp"
|
|
541
|
+
]
|
|
542
|
+
}
|
|
543
|
+
},
|
|
544
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/dimcode.svg"
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
"id": "dirac",
|
|
548
|
+
"name": "Dirac",
|
|
549
|
+
"version": "0.5.9",
|
|
550
|
+
"description": "Reduces API costs by more than 50%, produces better and faster work. Uses Hash anchored parallel edits, AST manipulation and a whole lot of neat optimizations. Fully Open Source.",
|
|
551
|
+
"repository": "https://github.com/dirac-run/dirac",
|
|
552
|
+
"website": "https://dirac.run",
|
|
553
|
+
"authors": [
|
|
554
|
+
"Dirac Delta Labs"
|
|
555
|
+
],
|
|
556
|
+
"license": "Apache-2.0",
|
|
557
|
+
"license_url": "https://github.com/dirac-run/dirac/blob/master/LICENSE",
|
|
558
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/dirac.svg",
|
|
559
|
+
"distribution": {
|
|
560
|
+
"npx": {
|
|
561
|
+
"package": "dirac-cli@0.5.9",
|
|
562
|
+
"args": [
|
|
563
|
+
"--acp"
|
|
564
|
+
]
|
|
565
|
+
}
|
|
566
|
+
}
|
|
567
|
+
},
|
|
568
|
+
{
|
|
569
|
+
"id": "factory-droid",
|
|
570
|
+
"name": "Factory Droid",
|
|
571
|
+
"version": "0.213.0",
|
|
572
|
+
"description": "Factory Droid - AI coding agent powered by Factory AI",
|
|
573
|
+
"website": "https://factory.ai/product/cli",
|
|
574
|
+
"authors": [
|
|
575
|
+
"Factory AI"
|
|
576
|
+
],
|
|
577
|
+
"license": "proprietary",
|
|
578
|
+
"distribution": {
|
|
579
|
+
"npx": {
|
|
580
|
+
"package": "droid@0.213.0",
|
|
581
|
+
"args": [
|
|
582
|
+
"exec",
|
|
583
|
+
"--output-format",
|
|
584
|
+
"acp-daemon"
|
|
585
|
+
],
|
|
586
|
+
"env": {
|
|
587
|
+
"DROID_DISABLE_AUTO_UPDATE": "true",
|
|
588
|
+
"FACTORY_DROID_AUTO_UPDATE_ENABLED": "false"
|
|
589
|
+
}
|
|
590
|
+
}
|
|
591
|
+
},
|
|
592
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/factory-droid.svg"
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"id": "fast-agent",
|
|
596
|
+
"name": "fast-agent",
|
|
597
|
+
"version": "0.10.1",
|
|
598
|
+
"description": "Code and build agents with comprehensive multi-provider support",
|
|
599
|
+
"repository": "https://github.com/evalstate/fast-agent",
|
|
600
|
+
"website": "https://fast-agent.ai",
|
|
601
|
+
"authors": [
|
|
602
|
+
"enquiries@fast-agent.ai"
|
|
603
|
+
],
|
|
604
|
+
"license": "Apache 2.0",
|
|
605
|
+
"license_url": "https://github.com/evalstate/fast-agent/blob/main/LICENSE",
|
|
606
|
+
"distribution": {
|
|
607
|
+
"uvx": {
|
|
608
|
+
"package": "fast-agent-acp==0.10.1",
|
|
609
|
+
"args": [
|
|
610
|
+
"-x"
|
|
611
|
+
],
|
|
612
|
+
"env": {
|
|
613
|
+
"FAST_AGENT_MODEL": "codexplan"
|
|
614
|
+
}
|
|
615
|
+
}
|
|
616
|
+
},
|
|
617
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/fast-agent.svg"
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
"id": "gemini",
|
|
621
|
+
"name": "Gemini CLI",
|
|
622
|
+
"version": "0.58.0",
|
|
623
|
+
"description": "Google's official CLI for Gemini",
|
|
624
|
+
"repository": "https://github.com/google-gemini/gemini-cli",
|
|
625
|
+
"website": "https://geminicli.com",
|
|
626
|
+
"authors": [
|
|
627
|
+
"Google"
|
|
628
|
+
],
|
|
629
|
+
"license": "Apache-2.0",
|
|
630
|
+
"license_url": "https://github.com/google-gemini/gemini-cli/blob/main/LICENSE",
|
|
631
|
+
"distribution": {
|
|
632
|
+
"npx": {
|
|
633
|
+
"package": "@google/gemini-cli@0.58.0",
|
|
634
|
+
"args": [
|
|
635
|
+
"--acp"
|
|
636
|
+
]
|
|
637
|
+
}
|
|
638
|
+
},
|
|
639
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/gemini.svg"
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
"id": "github-copilot-cli",
|
|
643
|
+
"name": "GitHub Copilot",
|
|
644
|
+
"version": "1.0.83",
|
|
645
|
+
"description": "GitHub's AI pair programmer",
|
|
646
|
+
"repository": "https://github.com/github/copilot-cli",
|
|
647
|
+
"website": "https://github.com/features/copilot/cli/",
|
|
648
|
+
"authors": [
|
|
649
|
+
"GitHub"
|
|
650
|
+
],
|
|
651
|
+
"license": "proprietary",
|
|
652
|
+
"distribution": {
|
|
653
|
+
"npx": {
|
|
654
|
+
"package": "@github/copilot@1.0.83",
|
|
655
|
+
"args": [
|
|
656
|
+
"--acp"
|
|
657
|
+
]
|
|
658
|
+
}
|
|
659
|
+
},
|
|
660
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/github-copilot-cli.svg"
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"id": "glm-acp-agent",
|
|
664
|
+
"name": "GLM Agent",
|
|
665
|
+
"version": "1.8.0",
|
|
666
|
+
"description": "ACP agent powered by Zhipu AI's GLM Coding Plan models (glm-5.1, glm-5-turbo, glm-4.7, glm-4.5-air). Supports streaming, tool calls, mid-session model switching, image input via Z.AI Coding Plan Vision MCP, and session load/fork/resume with on-disk persistence.",
|
|
667
|
+
"repository": "https://github.com/stefandevo/glm-acp-agent",
|
|
668
|
+
"authors": [
|
|
669
|
+
"Stefan de Vogelaere"
|
|
670
|
+
],
|
|
671
|
+
"license": "Apache-2.0",
|
|
672
|
+
"license_url": "https://github.com/stefandevo/glm-acp-agent/blob/main/LICENSE",
|
|
673
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/glm-acp-agent.svg",
|
|
674
|
+
"distribution": {
|
|
675
|
+
"npx": {
|
|
676
|
+
"package": "glm-acp-agent@1.8.0"
|
|
677
|
+
}
|
|
678
|
+
}
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
"id": "goose",
|
|
682
|
+
"name": "goose",
|
|
683
|
+
"version": "1.49.0",
|
|
684
|
+
"description": "A local, extensible, open source AI agent that automates engineering tasks",
|
|
685
|
+
"repository": "https://github.com/block/goose",
|
|
686
|
+
"website": "https://block.github.io/goose/",
|
|
687
|
+
"authors": [
|
|
688
|
+
"Block"
|
|
689
|
+
],
|
|
690
|
+
"license": "Apache-2.0",
|
|
691
|
+
"license_url": "https://github.com/block/goose/blob/main/LICENSE",
|
|
692
|
+
"distribution": {
|
|
693
|
+
"binary": {
|
|
694
|
+
"darwin-aarch64": {
|
|
695
|
+
"archive": "https://github.com/block/goose/releases/download/v1.49.0/goose-aarch64-apple-darwin.tar.bz2",
|
|
696
|
+
"cmd": "./goose",
|
|
697
|
+
"args": [
|
|
698
|
+
"acp"
|
|
699
|
+
],
|
|
700
|
+
"sha256": "b0d29c99b310cfd58281ea50be6287be461438689506d6d4e994e4b05332fddb"
|
|
701
|
+
},
|
|
702
|
+
"darwin-x86_64": {
|
|
703
|
+
"archive": "https://github.com/block/goose/releases/download/v1.49.0/goose-x86_64-apple-darwin.tar.bz2",
|
|
704
|
+
"cmd": "./goose",
|
|
705
|
+
"args": [
|
|
706
|
+
"acp"
|
|
707
|
+
],
|
|
708
|
+
"sha256": "c3186169787164b165688a805a8fb0a8ef05a21ecd49d499e9043f01c0f3bb0a"
|
|
709
|
+
},
|
|
710
|
+
"linux-aarch64": {
|
|
711
|
+
"archive": "https://github.com/block/goose/releases/download/v1.49.0/goose-aarch64-unknown-linux-gnu.tar.bz2",
|
|
712
|
+
"cmd": "./goose",
|
|
713
|
+
"args": [
|
|
714
|
+
"acp"
|
|
715
|
+
],
|
|
716
|
+
"sha256": "246de5a95c5b283bca8419334d1a6088bbb6d2540170c26cec1ce97764bb8735"
|
|
717
|
+
},
|
|
718
|
+
"linux-x86_64": {
|
|
719
|
+
"archive": "https://github.com/block/goose/releases/download/v1.49.0/goose-x86_64-unknown-linux-gnu.tar.bz2",
|
|
720
|
+
"cmd": "./goose",
|
|
721
|
+
"args": [
|
|
722
|
+
"acp"
|
|
723
|
+
],
|
|
724
|
+
"sha256": "c631a55e7d826d28c3bcd87b71a0aaecc9612f5a44e6c0d01e7a5b82dd8b7143"
|
|
725
|
+
},
|
|
726
|
+
"windows-x86_64": {
|
|
727
|
+
"archive": "https://github.com/block/goose/releases/download/v1.49.0/goose-x86_64-pc-windows-msvc.zip",
|
|
728
|
+
"cmd": "./goose-package\\goose.exe",
|
|
729
|
+
"args": [
|
|
730
|
+
"acp"
|
|
731
|
+
],
|
|
732
|
+
"sha256": "ff763fc1daf547b0cc56c40250935f0dffa929ea49ebaab7b6231e7d65374d6d"
|
|
733
|
+
}
|
|
734
|
+
}
|
|
735
|
+
},
|
|
736
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/goose.svg"
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
"id": "grok-build",
|
|
740
|
+
"name": "Grok Build",
|
|
741
|
+
"version": "1.0.21",
|
|
742
|
+
"description": "xAI's coding agent and CLI",
|
|
743
|
+
"website": "https://x.ai/cli",
|
|
744
|
+
"authors": [
|
|
745
|
+
"xAI"
|
|
746
|
+
],
|
|
747
|
+
"license": "proprietary",
|
|
748
|
+
"distribution": {
|
|
749
|
+
"npx": {
|
|
750
|
+
"package": "@xai-official/grok@1.0.21",
|
|
751
|
+
"args": [
|
|
752
|
+
"agent",
|
|
753
|
+
"stdio"
|
|
754
|
+
]
|
|
755
|
+
}
|
|
756
|
+
},
|
|
757
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/grok-build.svg"
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
"id": "harn",
|
|
761
|
+
"name": "Harn",
|
|
762
|
+
"version": "0.10.130",
|
|
763
|
+
"description": "Harn runs .harn agent pipelines as a native ACP coding agent over stdio.",
|
|
764
|
+
"repository": "https://github.com/burin-labs/harn",
|
|
765
|
+
"website": "https://harnlang.com",
|
|
766
|
+
"authors": [
|
|
767
|
+
"Burin Labs"
|
|
768
|
+
],
|
|
769
|
+
"license": "Apache-2.0",
|
|
770
|
+
"license_url": "https://github.com/burin-labs/harn/blob/main/LICENSE-APACHE",
|
|
771
|
+
"distribution": {
|
|
772
|
+
"binary": {
|
|
773
|
+
"darwin-aarch64": {
|
|
774
|
+
"archive": "https://github.com/burin-labs/harn/releases/download/v0.10.130/harn-aarch64-apple-darwin.tar.gz",
|
|
775
|
+
"cmd": "./harn",
|
|
776
|
+
"args": [
|
|
777
|
+
"serve",
|
|
778
|
+
"acp"
|
|
779
|
+
],
|
|
780
|
+
"sha256": "37f7e7cbd02f30731f4b6d70a72efe57c5cd80ddee0c39b0eac8041a6735c013"
|
|
781
|
+
},
|
|
782
|
+
"darwin-x86_64": {
|
|
783
|
+
"archive": "https://github.com/burin-labs/harn/releases/download/v0.10.130/harn-x86_64-apple-darwin.tar.gz",
|
|
784
|
+
"cmd": "./harn",
|
|
785
|
+
"args": [
|
|
786
|
+
"serve",
|
|
787
|
+
"acp"
|
|
788
|
+
],
|
|
789
|
+
"sha256": "5d9d57f854bce072b3484f9e7ef4850ac7139664037e3e68673b12eddabf7b5e"
|
|
790
|
+
},
|
|
791
|
+
"linux-aarch64": {
|
|
792
|
+
"archive": "https://github.com/burin-labs/harn/releases/download/v0.10.130/harn-aarch64-unknown-linux-gnu.tar.gz",
|
|
793
|
+
"cmd": "./harn",
|
|
794
|
+
"args": [
|
|
795
|
+
"serve",
|
|
796
|
+
"acp"
|
|
797
|
+
],
|
|
798
|
+
"sha256": "9ba884c179226b3333cb3825f294f37c2c06c4a45f643967cbca154ef865417a"
|
|
799
|
+
},
|
|
800
|
+
"linux-x86_64": {
|
|
801
|
+
"archive": "https://github.com/burin-labs/harn/releases/download/v0.10.130/harn-x86_64-unknown-linux-gnu.tar.gz",
|
|
802
|
+
"cmd": "./harn",
|
|
803
|
+
"args": [
|
|
804
|
+
"serve",
|
|
805
|
+
"acp"
|
|
806
|
+
],
|
|
807
|
+
"sha256": "cf34d686f4f7cbcb78950578cf496c96db626e1c39d22002f1026d0998f23ca9"
|
|
808
|
+
},
|
|
809
|
+
"windows-x86_64": {
|
|
810
|
+
"archive": "https://github.com/burin-labs/harn/releases/download/v0.10.130/harn-x86_64-pc-windows-msvc.zip",
|
|
811
|
+
"cmd": "harn.exe",
|
|
812
|
+
"args": [
|
|
813
|
+
"serve",
|
|
814
|
+
"acp"
|
|
815
|
+
],
|
|
816
|
+
"sha256": "b49ef6af935088e4dba94df263acd0f9fbb28b342d6543a27ba42b3b026f6e69"
|
|
817
|
+
}
|
|
818
|
+
}
|
|
819
|
+
},
|
|
820
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/harn.svg"
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
"id": "junie",
|
|
824
|
+
"name": "Junie",
|
|
825
|
+
"version": "3123.7.0",
|
|
826
|
+
"description": "AI Coding Agent by JetBrains",
|
|
827
|
+
"repository": "https://github.com/JetBrains/junie-acp-release",
|
|
828
|
+
"website": "https://junie.jetbrains.com",
|
|
829
|
+
"authors": [
|
|
830
|
+
"JetBrains"
|
|
831
|
+
],
|
|
832
|
+
"license": "proprietary",
|
|
833
|
+
"distribution": {
|
|
834
|
+
"binary": {
|
|
835
|
+
"darwin-aarch64": {
|
|
836
|
+
"archive": "https://github.com/JetBrains/junie-acp-release/releases/download/3123.7/junie-release-3123.7-macos-aarch64.zip",
|
|
837
|
+
"cmd": "./Applications/junie.app/Contents/MacOS/junie",
|
|
838
|
+
"args": [
|
|
839
|
+
"--acp=true"
|
|
840
|
+
]
|
|
841
|
+
},
|
|
842
|
+
"darwin-x86_64": {
|
|
843
|
+
"archive": "https://github.com/JetBrains/junie-acp-release/releases/download/3123.7/junie-release-3123.7-macos-amd64.zip",
|
|
844
|
+
"cmd": "./Applications/junie.app/Contents/MacOS/junie",
|
|
845
|
+
"args": [
|
|
846
|
+
"--acp=true"
|
|
847
|
+
]
|
|
848
|
+
},
|
|
849
|
+
"linux-aarch64": {
|
|
850
|
+
"archive": "https://github.com/JetBrains/junie-acp-release/releases/download/3123.7/junie-release-3123.7-linux-aarch64.zip",
|
|
851
|
+
"cmd": "./junie-app/bin/junie",
|
|
852
|
+
"args": [
|
|
853
|
+
"--acp=true"
|
|
854
|
+
]
|
|
855
|
+
},
|
|
856
|
+
"linux-x86_64": {
|
|
857
|
+
"archive": "https://github.com/JetBrains/junie-acp-release/releases/download/3123.7/junie-release-3123.7-linux-amd64.zip",
|
|
858
|
+
"cmd": "./junie-app/bin/junie",
|
|
859
|
+
"args": [
|
|
860
|
+
"--acp=true"
|
|
861
|
+
]
|
|
862
|
+
},
|
|
863
|
+
"windows-x86_64": {
|
|
864
|
+
"archive": "https://github.com/JetBrains/junie-acp-release/releases/download/3123.7/junie-release-3123.7-windows-amd64.zip",
|
|
865
|
+
"cmd": "./junie/junie.exe",
|
|
866
|
+
"args": [
|
|
867
|
+
"--acp=true"
|
|
868
|
+
]
|
|
869
|
+
},
|
|
870
|
+
"windows-aarch64": {
|
|
871
|
+
"archive": "https://github.com/JetBrains/junie-acp-release/releases/download/3123.7/junie-release-3123.7-windows-aarch64.zip",
|
|
872
|
+
"cmd": "./junie/junie.exe",
|
|
873
|
+
"args": [
|
|
874
|
+
"--acp=true"
|
|
875
|
+
]
|
|
876
|
+
}
|
|
877
|
+
}
|
|
878
|
+
},
|
|
879
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/junie.svg"
|
|
880
|
+
},
|
|
881
|
+
{
|
|
882
|
+
"id": "kilo",
|
|
883
|
+
"name": "Kilo",
|
|
884
|
+
"version": "7.5.14",
|
|
885
|
+
"description": "The open source coding agent",
|
|
886
|
+
"repository": "https://github.com/Kilo-Org/kilocode",
|
|
887
|
+
"website": "https://kilo.ai/",
|
|
888
|
+
"authors": [
|
|
889
|
+
"Kilo Code"
|
|
890
|
+
],
|
|
891
|
+
"license": "MIT",
|
|
892
|
+
"license_url": "https://github.com/Kilo-Org/kilocode/blob/main/LICENSE",
|
|
893
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/kilo.svg",
|
|
894
|
+
"distribution": {
|
|
895
|
+
"binary": {
|
|
896
|
+
"darwin-aarch64": {
|
|
897
|
+
"archive": "https://github.com/Kilo-Org/kilocode/releases/download/v7.5.14/kilo-darwin-arm64.zip",
|
|
898
|
+
"cmd": "./kilo",
|
|
899
|
+
"args": [
|
|
900
|
+
"acp"
|
|
901
|
+
],
|
|
902
|
+
"sha256": "9d8c41b1e91b123ddbc06a24ba4e1874dd4573cd581bf13ab0831572f4bdc9e6"
|
|
903
|
+
},
|
|
904
|
+
"darwin-x86_64": {
|
|
905
|
+
"archive": "https://github.com/Kilo-Org/kilocode/releases/download/v7.5.14/kilo-darwin-x64.zip",
|
|
906
|
+
"cmd": "./kilo",
|
|
907
|
+
"args": [
|
|
908
|
+
"acp"
|
|
909
|
+
],
|
|
910
|
+
"sha256": "5cacc1328e30472a8aa62dddd110f1a0279e757660fb1c873c337def0d8dfe5a"
|
|
911
|
+
},
|
|
912
|
+
"linux-aarch64": {
|
|
913
|
+
"archive": "https://github.com/Kilo-Org/kilocode/releases/download/v7.5.14/kilo-linux-arm64.tar.gz",
|
|
914
|
+
"cmd": "./kilo",
|
|
915
|
+
"args": [
|
|
916
|
+
"acp"
|
|
917
|
+
],
|
|
918
|
+
"sha256": "5cff893b29e34f18feaa1512685ec5856754599f6da91932369e8bfcb73827f4"
|
|
919
|
+
},
|
|
920
|
+
"linux-x86_64": {
|
|
921
|
+
"archive": "https://github.com/Kilo-Org/kilocode/releases/download/v7.5.14/kilo-linux-x64.tar.gz",
|
|
922
|
+
"cmd": "./kilo",
|
|
923
|
+
"args": [
|
|
924
|
+
"acp"
|
|
925
|
+
],
|
|
926
|
+
"sha256": "6fd9f9531ef4bca631cb7518547f5bb27ee83cf12bb3686cf5278873bd4dcfbe"
|
|
927
|
+
},
|
|
928
|
+
"windows-x86_64": {
|
|
929
|
+
"archive": "https://github.com/Kilo-Org/kilocode/releases/download/v7.5.14/kilo-windows-x64.zip",
|
|
930
|
+
"cmd": "./kilo.exe",
|
|
931
|
+
"args": [
|
|
932
|
+
"acp"
|
|
933
|
+
],
|
|
934
|
+
"sha256": "5f41ebe5a79d208762ab97b6784d84506b6c3ecd1c37a26a1e2deafdd3fa56a6"
|
|
935
|
+
}
|
|
936
|
+
},
|
|
937
|
+
"npx": {
|
|
938
|
+
"package": "@kilocode/cli@7.5.14",
|
|
939
|
+
"args": [
|
|
940
|
+
"acp"
|
|
941
|
+
]
|
|
942
|
+
}
|
|
943
|
+
}
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
"id": "kimi",
|
|
947
|
+
"name": "Kimi CLI",
|
|
948
|
+
"version": "1.50.0",
|
|
949
|
+
"description": "Moonshot AI's coding assistant",
|
|
950
|
+
"repository": "https://github.com/MoonshotAI/kimi-cli",
|
|
951
|
+
"website": "https://moonshotai.github.io/kimi-cli/",
|
|
952
|
+
"authors": [
|
|
953
|
+
"Moonshot AI"
|
|
954
|
+
],
|
|
955
|
+
"license": "MIT",
|
|
956
|
+
"license_url": "https://github.com/MoonshotAI/kimi-cli/blob/main/LICENSE",
|
|
957
|
+
"distribution": {
|
|
958
|
+
"binary": {
|
|
959
|
+
"darwin-aarch64": {
|
|
960
|
+
"archive": "https://github.com/MoonshotAI/kimi-cli/releases/download/1.50.0/kimi-1.50.0-aarch64-apple-darwin.tar.gz",
|
|
961
|
+
"cmd": "./kimi",
|
|
962
|
+
"args": [
|
|
963
|
+
"acp"
|
|
964
|
+
],
|
|
965
|
+
"sha256": "5684f903cfc1ca1be4135a2634f7db108c787827c084b41df6a98eb01c9012df"
|
|
966
|
+
},
|
|
967
|
+
"linux-aarch64": {
|
|
968
|
+
"archive": "https://github.com/MoonshotAI/kimi-cli/releases/download/1.50.0/kimi-1.50.0-aarch64-unknown-linux-gnu.tar.gz",
|
|
969
|
+
"cmd": "./kimi",
|
|
970
|
+
"args": [
|
|
971
|
+
"acp"
|
|
972
|
+
],
|
|
973
|
+
"sha256": "de235322f48abe63e7a8d737f39f0c00fecf724f1dfaa1ae02491bb773ae8070"
|
|
974
|
+
},
|
|
975
|
+
"linux-x86_64": {
|
|
976
|
+
"archive": "https://github.com/MoonshotAI/kimi-cli/releases/download/1.50.0/kimi-1.50.0-x86_64-unknown-linux-gnu.tar.gz",
|
|
977
|
+
"cmd": "./kimi",
|
|
978
|
+
"args": [
|
|
979
|
+
"acp"
|
|
980
|
+
],
|
|
981
|
+
"sha256": "10ccaa26ee7f5bb43f7c05baf808c11cd0160710b07ac422382d1d1923f3dab6"
|
|
982
|
+
},
|
|
983
|
+
"windows-aarch64": {
|
|
984
|
+
"archive": "https://github.com/MoonshotAI/kimi-cli/releases/download/1.50.0/kimi-1.50.0-aarch64-pc-windows-msvc.zip",
|
|
985
|
+
"cmd": "./kimi.exe",
|
|
986
|
+
"args": [
|
|
987
|
+
"acp"
|
|
988
|
+
],
|
|
989
|
+
"sha256": "45fdb98d41a37e5430c332290a9cd97cb0586c428c1d49f6e11c54c80efdfc85"
|
|
990
|
+
},
|
|
991
|
+
"windows-x86_64": {
|
|
992
|
+
"archive": "https://github.com/MoonshotAI/kimi-cli/releases/download/1.50.0/kimi-1.50.0-x86_64-pc-windows-msvc.zip",
|
|
993
|
+
"cmd": "./kimi.exe",
|
|
994
|
+
"args": [
|
|
995
|
+
"acp"
|
|
996
|
+
],
|
|
997
|
+
"sha256": "2752f041cd7ead131c81b06f32bd1cf30afadf9b2e4741f7273331877aef6b33"
|
|
998
|
+
}
|
|
999
|
+
}
|
|
1000
|
+
},
|
|
1001
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/kimi.svg"
|
|
1002
|
+
},
|
|
1003
|
+
{
|
|
1004
|
+
"id": "minion-code",
|
|
1005
|
+
"name": "Minion Code",
|
|
1006
|
+
"version": "0.1.44",
|
|
1007
|
+
"description": "An enhanced AI code assistant built on the Minion framework with rich development tools",
|
|
1008
|
+
"repository": "https://github.com/femto/minion-code",
|
|
1009
|
+
"authors": [
|
|
1010
|
+
"femto"
|
|
1011
|
+
],
|
|
1012
|
+
"license": "AGPL-3.0",
|
|
1013
|
+
"license_url": "https://github.com/femto/minion-code/blob/main/LICENSE",
|
|
1014
|
+
"distribution": {
|
|
1015
|
+
"uvx": {
|
|
1016
|
+
"package": "minion-code@0.1.44",
|
|
1017
|
+
"args": [
|
|
1018
|
+
"acp"
|
|
1019
|
+
]
|
|
1020
|
+
}
|
|
1021
|
+
},
|
|
1022
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/minion-code.svg"
|
|
1023
|
+
},
|
|
1024
|
+
{
|
|
1025
|
+
"id": "mistral-vibe",
|
|
1026
|
+
"name": "Mistral Vibe",
|
|
1027
|
+
"version": "2.24.1",
|
|
1028
|
+
"description": "Mistral's open-source coding assistant",
|
|
1029
|
+
"repository": "https://github.com/mistralai/mistral-vibe",
|
|
1030
|
+
"website": "https://mistral.ai/products/vibe",
|
|
1031
|
+
"authors": [
|
|
1032
|
+
"Mistral AI"
|
|
1033
|
+
],
|
|
1034
|
+
"license": "Apache-2.0",
|
|
1035
|
+
"license_url": "https://github.com/mistralai/mistral-vibe/blob/main/LICENSE",
|
|
1036
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/mistral-vibe.svg",
|
|
1037
|
+
"distribution": {
|
|
1038
|
+
"binary": {
|
|
1039
|
+
"darwin-aarch64": {
|
|
1040
|
+
"archive": "https://github.com/mistralai/mistral-vibe/releases/download/v2.24.1/vibe-acp-darwin-aarch64-2.24.1.tar.gz",
|
|
1041
|
+
"cmd": "./vibe-acp",
|
|
1042
|
+
"sha256": "4faa3ed31454ee739fac2d5ff052c56056b175611a7b7ace0a4191f2bf83ba93"
|
|
1043
|
+
},
|
|
1044
|
+
"darwin-x86_64": {
|
|
1045
|
+
"archive": "https://github.com/mistralai/mistral-vibe/releases/download/v2.24.1/vibe-acp-darwin-x86_64-2.24.1.tar.gz",
|
|
1046
|
+
"cmd": "./vibe-acp",
|
|
1047
|
+
"sha256": "97d512a02e97fb828824cfb7b72734574f086d0442851c5fdfb432d7dabfa88a"
|
|
1048
|
+
},
|
|
1049
|
+
"linux-aarch64": {
|
|
1050
|
+
"archive": "https://github.com/mistralai/mistral-vibe/releases/download/v2.24.1/vibe-acp-linux-aarch64-2.24.1.tar.gz",
|
|
1051
|
+
"cmd": "./vibe-acp",
|
|
1052
|
+
"sha256": "e43913b43f0666df2a42060cd3bd410805b0ca1218843b0c242edf874a78c31a"
|
|
1053
|
+
},
|
|
1054
|
+
"linux-x86_64": {
|
|
1055
|
+
"archive": "https://github.com/mistralai/mistral-vibe/releases/download/v2.24.1/vibe-acp-linux-x86_64-2.24.1.tar.gz",
|
|
1056
|
+
"cmd": "./vibe-acp",
|
|
1057
|
+
"sha256": "8e87f581e7c292fbeab7377178e947ddc4e83753c409f1db0760631f11d7083c"
|
|
1058
|
+
},
|
|
1059
|
+
"windows-x86_64": {
|
|
1060
|
+
"archive": "https://github.com/mistralai/mistral-vibe/releases/download/v2.24.1/vibe-acp-windows-x86_64-2.24.1.zip",
|
|
1061
|
+
"cmd": "./vibe-acp.exe",
|
|
1062
|
+
"sha256": "a66329ff18845f8e810359910e8da15bb2071648159c13a10838e5ae7a7d9b81"
|
|
1063
|
+
}
|
|
1064
|
+
}
|
|
1065
|
+
}
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
"id": "nova",
|
|
1069
|
+
"name": "Nova",
|
|
1070
|
+
"version": "1.1.37",
|
|
1071
|
+
"description": "Nova by Compass AI - a fully-fledged software engineer at your command",
|
|
1072
|
+
"repository": "https://github.com/Compass-Agentic-Platform/nova",
|
|
1073
|
+
"website": "https://www.compassap.ai/portfolio/nova.html",
|
|
1074
|
+
"authors": [
|
|
1075
|
+
"Compass AI"
|
|
1076
|
+
],
|
|
1077
|
+
"license": "proprietary",
|
|
1078
|
+
"license_url": "https://github.com/Compass-Agentic-Platform/nova/blob/main/LICENSE",
|
|
1079
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/nova.svg",
|
|
1080
|
+
"distribution": {
|
|
1081
|
+
"npx": {
|
|
1082
|
+
"package": "@compass-ai/nova@1.1.37",
|
|
1083
|
+
"args": [
|
|
1084
|
+
"acp"
|
|
1085
|
+
]
|
|
1086
|
+
}
|
|
1087
|
+
}
|
|
1088
|
+
},
|
|
1089
|
+
{
|
|
1090
|
+
"id": "opencode",
|
|
1091
|
+
"name": "OpenCode",
|
|
1092
|
+
"version": "1.18.29",
|
|
1093
|
+
"description": "The open source coding agent",
|
|
1094
|
+
"repository": "https://github.com/anomalyco/opencode",
|
|
1095
|
+
"website": "https://opencode.ai",
|
|
1096
|
+
"authors": [
|
|
1097
|
+
"Anomaly"
|
|
1098
|
+
],
|
|
1099
|
+
"license": "MIT",
|
|
1100
|
+
"license_url": "https://github.com/anomalyco/opencode/blob/dev/LICENSE",
|
|
1101
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/opencode.svg",
|
|
1102
|
+
"distribution": {
|
|
1103
|
+
"binary": {
|
|
1104
|
+
"darwin-aarch64": {
|
|
1105
|
+
"archive": "https://github.com/anomalyco/opencode/releases/download/v1.18.29/opencode-darwin-arm64.zip",
|
|
1106
|
+
"cmd": "./opencode",
|
|
1107
|
+
"args": [
|
|
1108
|
+
"acp"
|
|
1109
|
+
],
|
|
1110
|
+
"sha256": "fe764f7f360c584a83e18dd5f23fb1a6b2725f5ee8854b0252fe558f7798e946"
|
|
1111
|
+
},
|
|
1112
|
+
"darwin-x86_64": {
|
|
1113
|
+
"archive": "https://github.com/anomalyco/opencode/releases/download/v1.18.29/opencode-darwin-x64.zip",
|
|
1114
|
+
"cmd": "./opencode",
|
|
1115
|
+
"args": [
|
|
1116
|
+
"acp"
|
|
1117
|
+
],
|
|
1118
|
+
"sha256": "9858853e7bacdbbd22c2d70c377e009dc4b354dd04f5588705411e7afb89fd2d"
|
|
1119
|
+
},
|
|
1120
|
+
"linux-aarch64": {
|
|
1121
|
+
"archive": "https://github.com/anomalyco/opencode/releases/download/v1.18.29/opencode-linux-arm64.tar.gz",
|
|
1122
|
+
"cmd": "./opencode",
|
|
1123
|
+
"args": [
|
|
1124
|
+
"acp"
|
|
1125
|
+
],
|
|
1126
|
+
"sha256": "70baf769395ca4e7a68924026530c390eace194f3b7e4919d4efcb2aa2eed3c0"
|
|
1127
|
+
},
|
|
1128
|
+
"linux-x86_64": {
|
|
1129
|
+
"archive": "https://github.com/anomalyco/opencode/releases/download/v1.18.29/opencode-linux-x64.tar.gz",
|
|
1130
|
+
"cmd": "./opencode",
|
|
1131
|
+
"args": [
|
|
1132
|
+
"acp"
|
|
1133
|
+
],
|
|
1134
|
+
"sha256": "ea800b7ff56226b70952126c9fc1e2517ca4c4b5682fd9d3f9e87449697a1194"
|
|
1135
|
+
},
|
|
1136
|
+
"windows-aarch64": {
|
|
1137
|
+
"archive": "https://github.com/anomalyco/opencode/releases/download/v1.18.29/opencode-windows-arm64.zip",
|
|
1138
|
+
"cmd": "./opencode",
|
|
1139
|
+
"args": [
|
|
1140
|
+
"acp"
|
|
1141
|
+
],
|
|
1142
|
+
"sha256": "f953f0f0f5263d723ff4ea6141d5aa094d4941cf2f5d9179fc66eb0eb2d9524b"
|
|
1143
|
+
},
|
|
1144
|
+
"windows-x86_64": {
|
|
1145
|
+
"archive": "https://github.com/anomalyco/opencode/releases/download/v1.18.29/opencode-windows-x64.zip",
|
|
1146
|
+
"cmd": "./opencode.exe",
|
|
1147
|
+
"args": [
|
|
1148
|
+
"acp"
|
|
1149
|
+
],
|
|
1150
|
+
"sha256": "b32618aa3d1415f6e4f473aec248edef25759203fb707d7d968359d86d4a35ee"
|
|
1151
|
+
}
|
|
1152
|
+
}
|
|
1153
|
+
}
|
|
1154
|
+
},
|
|
1155
|
+
{
|
|
1156
|
+
"id": "pi-acp",
|
|
1157
|
+
"name": "pi ACP",
|
|
1158
|
+
"version": "0.0.33",
|
|
1159
|
+
"description": "ACP adapter for pi coding agent",
|
|
1160
|
+
"repository": "https://github.com/svkozak/pi-acp",
|
|
1161
|
+
"authors": [
|
|
1162
|
+
"Sergii Kozak <svkozak@gmail.com>"
|
|
1163
|
+
],
|
|
1164
|
+
"license": "MIT",
|
|
1165
|
+
"license_url": "https://github.com/svkozak/pi-acp/blob/main/LICENSE",
|
|
1166
|
+
"distribution": {
|
|
1167
|
+
"npx": {
|
|
1168
|
+
"package": "pi-acp@0.0.33"
|
|
1169
|
+
}
|
|
1170
|
+
},
|
|
1171
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/pi-acp.svg"
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
"id": "poolside",
|
|
1175
|
+
"name": "Poolside",
|
|
1176
|
+
"version": "1.0.16",
|
|
1177
|
+
"description": "Poolside's coding agent",
|
|
1178
|
+
"repository": "https://github.com/poolsideai/pool",
|
|
1179
|
+
"website": "https://poolside.ai",
|
|
1180
|
+
"authors": [
|
|
1181
|
+
"Poolside <feedback@poolside.ai>"
|
|
1182
|
+
],
|
|
1183
|
+
"license": "proprietary",
|
|
1184
|
+
"license_url": "https://github.com/poolsideai/pool/blob/main/LICENSE.md",
|
|
1185
|
+
"distribution": {
|
|
1186
|
+
"binary": {
|
|
1187
|
+
"darwin-aarch64": {
|
|
1188
|
+
"archive": "https://downloads.poolside.ai/pool/v1.0.16/pool-darwin-arm64.tar.gz",
|
|
1189
|
+
"cmd": "./pool-darwin-arm64",
|
|
1190
|
+
"args": [
|
|
1191
|
+
"acp"
|
|
1192
|
+
],
|
|
1193
|
+
"sha256": "0932af3eb2b57a863acacb664ec8b2b1d3a76c2570a788b086001608cc585f74"
|
|
1194
|
+
},
|
|
1195
|
+
"darwin-x86_64": {
|
|
1196
|
+
"archive": "https://downloads.poolside.ai/pool/v1.0.16/pool-darwin-amd64.tar.gz",
|
|
1197
|
+
"cmd": "./pool-darwin-amd64",
|
|
1198
|
+
"args": [
|
|
1199
|
+
"acp"
|
|
1200
|
+
],
|
|
1201
|
+
"sha256": "6d75fae2d7de6c35b6b467b5f682935e3ecde8ff611cb620c56b7bd607e0afde"
|
|
1202
|
+
},
|
|
1203
|
+
"linux-aarch64": {
|
|
1204
|
+
"archive": "https://downloads.poolside.ai/pool/v1.0.16/pool-linux-arm64.tar.gz",
|
|
1205
|
+
"cmd": "./pool-linux-arm64",
|
|
1206
|
+
"args": [
|
|
1207
|
+
"acp"
|
|
1208
|
+
],
|
|
1209
|
+
"sha256": "466343b66b03ee4e66476fcc69be1eb5bf8e9155a4ab73e0e72a232d1f8d2a12"
|
|
1210
|
+
},
|
|
1211
|
+
"linux-x86_64": {
|
|
1212
|
+
"archive": "https://downloads.poolside.ai/pool/v1.0.16/pool-linux-amd64.tar.gz",
|
|
1213
|
+
"cmd": "./pool-linux-amd64",
|
|
1214
|
+
"args": [
|
|
1215
|
+
"acp"
|
|
1216
|
+
],
|
|
1217
|
+
"sha256": "e86aa8c9feef003540673ab494e91bfadc273218d531c43d662cafb69e464146"
|
|
1218
|
+
},
|
|
1219
|
+
"windows-aarch64": {
|
|
1220
|
+
"archive": "https://downloads.poolside.ai/pool/v1.0.16/pool-windows-arm64.tar.gz",
|
|
1221
|
+
"cmd": "./pool-windows-arm64.exe",
|
|
1222
|
+
"args": [
|
|
1223
|
+
"acp"
|
|
1224
|
+
],
|
|
1225
|
+
"sha256": "8dc7d014ced3e9d3ced240bbc7dabaf696bf59f118bd271d9f4e8561e415d75b"
|
|
1226
|
+
},
|
|
1227
|
+
"windows-x86_64": {
|
|
1228
|
+
"archive": "https://downloads.poolside.ai/pool/v1.0.16/pool-windows-amd64.tar.gz",
|
|
1229
|
+
"cmd": "./pool-windows-amd64.exe",
|
|
1230
|
+
"args": [
|
|
1231
|
+
"acp"
|
|
1232
|
+
],
|
|
1233
|
+
"sha256": "3e324f1a4b5855ba5363232c06461ec9d6d2ae1a341c827221e79779f8f2bc6f"
|
|
1234
|
+
}
|
|
1235
|
+
}
|
|
1236
|
+
},
|
|
1237
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/poolside.svg"
|
|
1238
|
+
},
|
|
1239
|
+
{
|
|
1240
|
+
"id": "qoder",
|
|
1241
|
+
"name": "Qoder CLI",
|
|
1242
|
+
"version": "0.2.14",
|
|
1243
|
+
"description": "AI coding assistant with agentic capabilities",
|
|
1244
|
+
"website": "https://qoder.com",
|
|
1245
|
+
"authors": [
|
|
1246
|
+
"Qoder AI"
|
|
1247
|
+
],
|
|
1248
|
+
"license": "proprietary",
|
|
1249
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/qoder.svg",
|
|
1250
|
+
"distribution": {
|
|
1251
|
+
"npx": {
|
|
1252
|
+
"package": "@qoder-ai/qodercli@0.2.14",
|
|
1253
|
+
"args": [
|
|
1254
|
+
"--acp"
|
|
1255
|
+
]
|
|
1256
|
+
}
|
|
1257
|
+
}
|
|
1258
|
+
},
|
|
1259
|
+
{
|
|
1260
|
+
"id": "qwen-code",
|
|
1261
|
+
"name": "Qwen Code",
|
|
1262
|
+
"version": "0.23.0",
|
|
1263
|
+
"description": "Alibaba's Qwen coding assistant",
|
|
1264
|
+
"repository": "https://github.com/QwenLM/qwen-code",
|
|
1265
|
+
"website": "https://qwenlm.github.io/qwen-code-docs/en/users/overview",
|
|
1266
|
+
"authors": [
|
|
1267
|
+
"Alibaba Qwen Team"
|
|
1268
|
+
],
|
|
1269
|
+
"license": "Apache-2.0",
|
|
1270
|
+
"license_url": "https://github.com/QwenLM/qwen-code/blob/main/LICENSE",
|
|
1271
|
+
"distribution": {
|
|
1272
|
+
"npx": {
|
|
1273
|
+
"package": "@qwen-code/qwen-code@0.23.0",
|
|
1274
|
+
"args": [
|
|
1275
|
+
"--acp",
|
|
1276
|
+
"--experimental-skills"
|
|
1277
|
+
]
|
|
1278
|
+
}
|
|
1279
|
+
},
|
|
1280
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/qwen-code.svg"
|
|
1281
|
+
},
|
|
1282
|
+
{
|
|
1283
|
+
"id": "sigit",
|
|
1284
|
+
"name": "siGit Code",
|
|
1285
|
+
"version": "1.5.2",
|
|
1286
|
+
"description": "Local-first coding agent. Runs entirely on your machine with optional on-device LLM inference via Onde.",
|
|
1287
|
+
"repository": "https://github.com/getsigit/sigit",
|
|
1288
|
+
"website": "https://github.com/getsigit/sigit",
|
|
1289
|
+
"authors": [
|
|
1290
|
+
"smbCloud"
|
|
1291
|
+
],
|
|
1292
|
+
"license": "Apache-2.0",
|
|
1293
|
+
"license_url": "https://github.com/getsigit/sigit/blob/main/LICENSE",
|
|
1294
|
+
"distribution": {
|
|
1295
|
+
"binary": {
|
|
1296
|
+
"darwin-aarch64": {
|
|
1297
|
+
"archive": "https://github.com/getsigit/sigit/releases/download/v1.5.2/sigit-macos-arm64.tar.gz",
|
|
1298
|
+
"cmd": "./sigit",
|
|
1299
|
+
"sha256": "be17cca0bb7341ac43d0ec3769a75aa5ca4a91c6e3c24512a524f3318eccad08"
|
|
1300
|
+
},
|
|
1301
|
+
"darwin-x86_64": {
|
|
1302
|
+
"archive": "https://github.com/getsigit/sigit/releases/download/v1.5.2/sigit-macos-amd64.tar.gz",
|
|
1303
|
+
"cmd": "./sigit",
|
|
1304
|
+
"sha256": "dc24791071831e1b6c5b84b09868bb3af62baae71db565d31176becab82744bc"
|
|
1305
|
+
},
|
|
1306
|
+
"linux-aarch64": {
|
|
1307
|
+
"archive": "https://github.com/getsigit/sigit/releases/download/v1.5.2/sigit-linux-arm64",
|
|
1308
|
+
"cmd": "./sigit-linux-arm64",
|
|
1309
|
+
"sha256": "374bf986b88b4736f4b1f7b16948f157002f7737a29a70140ee7036cd4735206"
|
|
1310
|
+
},
|
|
1311
|
+
"linux-x86_64": {
|
|
1312
|
+
"archive": "https://github.com/getsigit/sigit/releases/download/v1.5.2/sigit-linux-amd64",
|
|
1313
|
+
"cmd": "./sigit-linux-amd64",
|
|
1314
|
+
"sha256": "70bedf5d9459a86c9beea393a81a7a981c0fa07474b5ad0876ee62f6369d0d15"
|
|
1315
|
+
},
|
|
1316
|
+
"windows-aarch64": {
|
|
1317
|
+
"archive": "https://github.com/getsigit/sigit/releases/download/v1.5.2/sigit-win-arm64.exe",
|
|
1318
|
+
"cmd": "./sigit-win-arm64.exe",
|
|
1319
|
+
"sha256": "8982d36e86976eacec564989f13844ac0005263f3a5651ea7394a2c013d4b610"
|
|
1320
|
+
},
|
|
1321
|
+
"windows-x86_64": {
|
|
1322
|
+
"archive": "https://github.com/getsigit/sigit/releases/download/v1.5.2/sigit-win-amd64.exe",
|
|
1323
|
+
"cmd": "./sigit-win-amd64.exe",
|
|
1324
|
+
"sha256": "6d1a1f11f7d1e32a5995f9ea413e626f2e47dcc56fb000e30bf60cebb68e4f24"
|
|
1325
|
+
}
|
|
1326
|
+
},
|
|
1327
|
+
"npx": {
|
|
1328
|
+
"package": "@smbcloud/sigit@1.5.2"
|
|
1329
|
+
}
|
|
1330
|
+
},
|
|
1331
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/sigit.svg"
|
|
1332
|
+
},
|
|
1333
|
+
{
|
|
1334
|
+
"id": "stakpak",
|
|
1335
|
+
"name": "Stakpak",
|
|
1336
|
+
"version": "0.3.88",
|
|
1337
|
+
"description": "Open-source DevOps agent in Rust with enterprise-grade security",
|
|
1338
|
+
"repository": "https://github.com/stakpak/agent",
|
|
1339
|
+
"website": "https://stakpak.dev",
|
|
1340
|
+
"authors": [
|
|
1341
|
+
"Stakpak Team <contact@stakpak.dev>"
|
|
1342
|
+
],
|
|
1343
|
+
"license": "Apache-2.0",
|
|
1344
|
+
"license_url": "https://github.com/stakpak/agent/blob/main/LICENSE",
|
|
1345
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/stakpak.svg",
|
|
1346
|
+
"distribution": {
|
|
1347
|
+
"binary": {
|
|
1348
|
+
"darwin-aarch64": {
|
|
1349
|
+
"archive": "https://github.com/stakpak/agent/releases/download/v0.3.88/stakpak-darwin-aarch64.tar.gz",
|
|
1350
|
+
"cmd": "./stakpak",
|
|
1351
|
+
"args": [
|
|
1352
|
+
"acp"
|
|
1353
|
+
]
|
|
1354
|
+
},
|
|
1355
|
+
"darwin-x86_64": {
|
|
1356
|
+
"archive": "https://github.com/stakpak/agent/releases/download/v0.3.88/stakpak-darwin-x86_64.tar.gz",
|
|
1357
|
+
"cmd": "./stakpak",
|
|
1358
|
+
"args": [
|
|
1359
|
+
"acp"
|
|
1360
|
+
]
|
|
1361
|
+
},
|
|
1362
|
+
"linux-aarch64": {
|
|
1363
|
+
"archive": "https://github.com/stakpak/agent/releases/download/v0.3.88/stakpak-linux-aarch64.tar.gz",
|
|
1364
|
+
"cmd": "./stakpak",
|
|
1365
|
+
"args": [
|
|
1366
|
+
"acp"
|
|
1367
|
+
]
|
|
1368
|
+
},
|
|
1369
|
+
"linux-x86_64": {
|
|
1370
|
+
"archive": "https://github.com/stakpak/agent/releases/download/v0.3.88/stakpak-linux-x86_64.tar.gz",
|
|
1371
|
+
"cmd": "./stakpak",
|
|
1372
|
+
"args": [
|
|
1373
|
+
"acp"
|
|
1374
|
+
]
|
|
1375
|
+
},
|
|
1376
|
+
"windows-x86_64": {
|
|
1377
|
+
"archive": "https://github.com/stakpak/agent/releases/download/v0.3.88/stakpak-windows-x86_64.zip",
|
|
1378
|
+
"cmd": "./stakpak.exe",
|
|
1379
|
+
"args": [
|
|
1380
|
+
"acp"
|
|
1381
|
+
]
|
|
1382
|
+
}
|
|
1383
|
+
}
|
|
1384
|
+
}
|
|
1385
|
+
},
|
|
1386
|
+
{
|
|
1387
|
+
"id": "vtcode",
|
|
1388
|
+
"name": "VT Code",
|
|
1389
|
+
"version": "0.96.14",
|
|
1390
|
+
"description": "An open-source coding agent with LLM-native code understanding and robust shell safety. Supports multiple LLM providers with automatic failover and efficient context management.",
|
|
1391
|
+
"repository": "https://github.com/vinhnx/VTCode",
|
|
1392
|
+
"website": "https://github.com/vinhnx/VTCode/blob/main/docs/guides/zed-acp.md",
|
|
1393
|
+
"authors": [
|
|
1394
|
+
"vinhnx"
|
|
1395
|
+
],
|
|
1396
|
+
"license": "MIT",
|
|
1397
|
+
"license_url": "https://github.com/vinhnx/VTCode/blob/main/LICENSE",
|
|
1398
|
+
"distribution": {
|
|
1399
|
+
"binary": {
|
|
1400
|
+
"darwin-aarch64": {
|
|
1401
|
+
"archive": "https://github.com/vinhnx/VTCode/releases/download/0.96.14/vtcode-0.96.14-aarch64-apple-darwin.tar.gz",
|
|
1402
|
+
"cmd": "./vtcode",
|
|
1403
|
+
"args": [
|
|
1404
|
+
"acp"
|
|
1405
|
+
],
|
|
1406
|
+
"env": {
|
|
1407
|
+
"VT_ACP_ENABLED": "1",
|
|
1408
|
+
"VT_ACP_ZED_ENABLED": "1"
|
|
1409
|
+
}
|
|
1410
|
+
},
|
|
1411
|
+
"darwin-x86_64": {
|
|
1412
|
+
"archive": "https://github.com/vinhnx/VTCode/releases/download/0.96.14/vtcode-0.96.14-x86_64-apple-darwin.tar.gz",
|
|
1413
|
+
"cmd": "./vtcode",
|
|
1414
|
+
"args": [
|
|
1415
|
+
"acp"
|
|
1416
|
+
],
|
|
1417
|
+
"env": {
|
|
1418
|
+
"VT_ACP_ENABLED": "1",
|
|
1419
|
+
"VT_ACP_ZED_ENABLED": "1"
|
|
1420
|
+
}
|
|
1421
|
+
},
|
|
1422
|
+
"linux-x86_64": {
|
|
1423
|
+
"archive": "https://github.com/vinhnx/VTCode/releases/download/0.96.14/vtcode-0.96.14-x86_64-unknown-linux-gnu.tar.gz",
|
|
1424
|
+
"cmd": "./vtcode",
|
|
1425
|
+
"args": [
|
|
1426
|
+
"acp"
|
|
1427
|
+
],
|
|
1428
|
+
"env": {
|
|
1429
|
+
"VT_ACP_ENABLED": "1",
|
|
1430
|
+
"VT_ACP_ZED_ENABLED": "1"
|
|
1431
|
+
}
|
|
1432
|
+
},
|
|
1433
|
+
"windows-x86_64": {
|
|
1434
|
+
"archive": "https://github.com/vinhnx/VTCode/releases/download/0.96.14/vtcode-0.96.14-x86_64-pc-windows-msvc.zip",
|
|
1435
|
+
"cmd": "vtcode.exe",
|
|
1436
|
+
"args": [
|
|
1437
|
+
"acp"
|
|
1438
|
+
],
|
|
1439
|
+
"env": {
|
|
1440
|
+
"VT_ACP_ENABLED": "1",
|
|
1441
|
+
"VT_ACP_ZED_ENABLED": "1"
|
|
1442
|
+
}
|
|
1443
|
+
}
|
|
1444
|
+
}
|
|
1445
|
+
},
|
|
1446
|
+
"icon": "https://cdn.agentclientprotocol.com/registry/v1/latest/vtcode.svg"
|
|
1447
|
+
}
|
|
1448
|
+
],
|
|
1449
|
+
"extensions": []
|
|
1450
|
+
}
|