File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 = [
You can’t perform that action at this time.
0 commit comments