⚠️ Work in Progress: This registry is under active development. Format and contents may change.
A registry of agents and extensions implementing the Agent Client Protocol (ACP).
Note: This registry only includes agents that support authentication. Agents must implement auth flows to be listed here.
| Agent | Description |
|---|---|
| Auggie CLI | Augment Code's software agent with industry-leading context engine |
| Codex CLI | OpenAI's coding assistant |
| Gemini CLI | Google's official CLI for Gemini |
| Mistral Vibe | Mistral's open-source coding assistant |
| OpenCode | The open source coding agent |
| Qwen Code | Alibaba's Qwen coding assistant |
Fetch the registry index:
https://github.com/agentclientprotocol/registry/releases/latest/download/registry.json
The registry contains both agents and extensions:
{
"version": "1.0.0",
"agents": [...],
"extensions": [...]
}Each entry (agent or extension) has the same structure:
{
"id": "entry-id",
"name": "Entry Name",
"version": "1.0.0",
"description": "Entry description",
"repository": "https://github.com/...",
"authors": ["Author Name"],
"license": "MIT",
"icon": "https://.../entry-id.svg",
"distribution": {
"binary": {
"darwin-aarch64": {
"archive": "https://...",
"cmd": "./executable",
"args": ["serve"],
"env": {}
}
},
"npx": {
"package": "@scope/package",
"args": ["--acp"]
},
"uvx": {
"package": "package-name",
"args": ["serve"]
}
}
}| Type | Description | Command |
|---|---|---|
binary |
Platform-specific executables | Download, extract, run |
npx |
npm packages | npx <package> [args] |
uvx |
PyPI packages via uv | uvx <package> [args] |
Icons should be SVG format with a preferred size of 16x16.
Warning: Icons larger than 16x16 may be scaled down and lose quality. Icons with non-square aspect ratios may display incorrectly in some clients.
For binary distribution, use these platform identifiers:
darwin-aarch64- macOS Apple Silicondarwin-x86_64- macOS Intellinux-aarch64- Linux ARM64linux-x86_64- Linux x86_64windows-aarch64- Windows ARM64windows-x86_64- Windows x86_64
See CONTRIBUTING.md for instructions.
This registry is open source. Individual agents are subject to their own licenses.