Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 0 additions & 6 deletions .github/workflows/build_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -573,12 +573,6 @@ 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"] == "gemini":
assert "npx" in agent["distribution"], "gemini must have npx distribution"
agent = copy.deepcopy(agent)
jb_version = "0.36.0-preview.6"
agent["version"] = jb_version
agent["distribution"]["npx"]["package"] = f"@google/gemini-cli@{jb_version}"
return agent

jetbrains_agents = [
Expand Down
4 changes: 2 additions & 2 deletions gemini/agent.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "gemini",
"name": "Gemini CLI",
"version": "0.37.0",
"version": "0.37.1",
"description": "Google's official CLI for Gemini",
"repository": "https://github.com/google-gemini/gemini-cli",
"website": "https://geminicli.com",
Expand All @@ -11,7 +11,7 @@
"license": "Apache-2.0",
"distribution": {
"npx": {
"package": "@google/gemini-cli@0.37.0",
"package": "@google/gemini-cli@0.37.1",
"args": [
"--acp"
]
Expand Down
Loading