Skip to content

Commit 8f0e7bc

Browse files
Revert "Add codex-acp to JetBrains registry (#247)" (#248)
This reverts commit 6625a37.
1 parent ce1f501 commit 8f0e7bc

1 file changed

Lines changed: 1 addition & 17 deletions

File tree

.github/workflows/build_registry.py

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -566,29 +566,13 @@ def build_registry(dry_run: bool = False):
566566
default_agents = [a for a in agents if a["id"] not in DEFAULT_EXCLUDE_IDS]
567567

568568
# Agents excluded from registry-for-jetbrains.json
569-
JETBRAINS_EXCLUDE_IDS = {"github-copilot-cli"}
569+
JETBRAINS_EXCLUDE_IDS = {"codex-acp", "github-copilot-cli"}
570570

571571
def patch_agent_for_jetbrains(agent):
572572
if agent["id"] == "claude-acp":
573573
assert "npx" in agent["distribution"], "claude-acp must have npx distribution"
574574
agent = copy.deepcopy(agent)
575575
agent["distribution"]["npx"].setdefault("args", []).append("--hide-claude-auth")
576-
if agent["id"] == "codex-acp":
577-
return {
578-
"id": "codex-acp",
579-
"name": "Codex",
580-
"version": "beta",
581-
"description": "ACP adapter for OpenAI's coding assistant",
582-
"authors": ["OpenAI", "JetBrains s.r.o."],
583-
"license": "Apache-2.0",
584-
"distribution": {
585-
"npx": {
586-
"package": "@jetbrains/codex-acp@beta",
587-
"args": ["-acp"],
588-
}
589-
},
590-
"icon": agent["icon"],
591-
}
592576
return agent
593577

594578
jetbrains_agents = [

0 commit comments

Comments
 (0)