diff --git a/.github/workflows/build_registry.py b/.github/workflows/build_registry.py index fcc609bb..b425cb71 100644 --- a/.github/workflows/build_registry.py +++ b/.github/workflows/build_registry.py @@ -653,17 +653,6 @@ def patch_agent_for_jetbrains(agent): if patched["id"] == "claude-acp": assert "npx" in patched["distribution"], "claude-acp must have npx distribution" patched["distribution"]["npx"].setdefault("args", []).append("--hide-claude-auth") - if patched["id"] == "codex-acp": - patched["name"] = "Codex" - patched["version"] = "0.0.46" - patched["repository"] = "https://github.com/agentclientprotocol/codex-acp" - patched["authors"] = ["OpenAI", "JetBrains s.r.o."] - patched["distribution"] = { - "npx": { - "package": "@agentclientprotocol/codex-acp@0.0.46", - "args": ["-acp"], - } - } if patched["id"] in JETBRAINS_BUNDLED_IDS: patched["bundled"] = True return patched diff --git a/codex-acp/agent.json b/codex-acp/agent.json index aa35052c..61b2c19b 100644 --- a/codex-acp/agent.json +++ b/codex-acp/agent.json @@ -1,43 +1,14 @@ { "id": "codex-acp", - "name": "Codex CLI", - "version": "0.16.0", + "name": "Codex", + "version": "1.0.0", "description": "ACP adapter for OpenAI's coding assistant", - "repository": "https://github.com/zed-industries/codex-acp", - "authors": [ - "OpenAI", - "Zed Industries" - ], + "repository": "https://github.com/agentclientprotocol/codex-acp", + "authors": ["OpenAI", "JetBrains s.r.o", "Zed Industries"], "license": "Apache-2.0", "distribution": { - "binary": { - "darwin-aarch64": { - "archive": "https://github.com/zed-industries/codex-acp/releases/download/v0.16.0/codex-acp-0.16.0-aarch64-apple-darwin.tar.gz", - "cmd": "./codex-acp" - }, - "darwin-x86_64": { - "archive": "https://github.com/zed-industries/codex-acp/releases/download/v0.16.0/codex-acp-0.16.0-x86_64-apple-darwin.tar.gz", - "cmd": "./codex-acp" - }, - "linux-aarch64": { - "archive": "https://github.com/zed-industries/codex-acp/releases/download/v0.16.0/codex-acp-0.16.0-aarch64-unknown-linux-gnu.tar.gz", - "cmd": "./codex-acp" - }, - "linux-x86_64": { - "archive": "https://github.com/zed-industries/codex-acp/releases/download/v0.16.0/codex-acp-0.16.0-x86_64-unknown-linux-gnu.tar.gz", - "cmd": "./codex-acp" - }, - "windows-aarch64": { - "archive": "https://github.com/zed-industries/codex-acp/releases/download/v0.16.0/codex-acp-0.16.0-aarch64-pc-windows-msvc.zip", - "cmd": "./codex-acp.exe" - }, - "windows-x86_64": { - "archive": "https://github.com/zed-industries/codex-acp/releases/download/v0.16.0/codex-acp-0.16.0-x86_64-pc-windows-msvc.zip", - "cmd": "./codex-acp.exe" - } - }, "npx": { - "package": "@zed-industries/codex-acp@0.16.0" + "package": "@agentclientprotocol/codex-acp@1.0.0" } } }