Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/build_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -573,6 +573,10 @@ def patch_agent_for_jetbrains(agent):
assert "npx" in agent["distribution"], "claude-acp must have npx distribution"
agent = copy.deepcopy(agent)
agent["distribution"]["npx"].setdefault("args", []).append("--hide-claude-auth")
elif agent["id"] == "junie":
assert "binary" in agent["distribution"], "junie must have binary distribution"
agent = copy.deepcopy(agent)
agent["distribution"]["binary"].setdefault("args", []).append("--enable-acp-auth-methods=false")
return agent

jetbrains_agents = [
Expand Down