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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Ported from [openai/codex-plugin-cc](https://github.com/openai/codex-plugin-cc)
|---|---|---|
| Node.js | ≥ 18 | [nodejs.org](https://nodejs.org) |
| Gemini CLI | ≥ 0.40 | `npm install -g @google/gemini-cli` |
| AGY _(optional)_ | 1.0.3 | _(see install note below)_ |
| AGY _(optional)_ | 1.0.3 | _(see install note below)_ |
| Claude Code | any | [claude.ai/code](https://claude.ai/code) |

**Install AGY** (optional fallback): `curl -fsSL https://antigravity.google/cli/install.sh | bash`
Expand Down Expand Up @@ -58,15 +58,15 @@ Ported from [openai/codex-plugin-cc](https://github.com/openai/codex-plugin-cc)

### Pinned release (a specific published version)

Pin the marketplace to a release tag — e.g. the latest, `v0.6.0`:
Pin the marketplace to a release tag — e.g. the latest, `v0.6.6`:

```
/plugin marketplace add arcobaleno64/gemini-plugin-cc@v0.6.0
/plugin marketplace add arcobaleno64/gemini-plugin-cc@v0.6.6
/plugin install gemini@gemini-plugin-cc
/reload-plugins
```

> Claude Code installs plugins from the git tree, not from GitHub Release tarballs — `@<tag>` selects the git tag behind a [Release](https://github.com/arcobaleno64/gemini-plugin-cc/releases). A pinned install does **not** auto-update; to move to a newer release, re-add the marketplace with the new tag (e.g. `…@v0.6.1`).
> Claude Code installs plugins from the git tree, not from GitHub Release tarballs — `@<tag>` selects the git tag behind a [Release](https://github.com/arcobaleno64/gemini-plugin-cc/releases). A pinned install does **not** auto-update; to move to a newer release, re-add the marketplace with the new tag (e.g. `…@v0.6.7`).

Then run `/gemini:setup` — it will check whether Gemini CLI is ready. If Gemini is missing and npm is available, it will offer to install it for you.

Expand Down
8 changes: 4 additions & 4 deletions README.zh-TW.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
|---|---|---|
| Node.js | ≥ 18 | [nodejs.org](https://nodejs.org) |
| Gemini CLI | ≥ 0.40 | `npm install -g @google/gemini-cli` |
| AGY _(選用)_ | 1.0.3 | _(安裝指令見下)_ |
| AGY _(選用)_ | 1.0.3 | _(安裝指令見下)_ |
| Claude Code | 任意版本 | [claude.ai/code](https://claude.ai/code) |

**安裝 AGY**(選用備援):`curl -fsSL https://antigravity.google/cli/install.sh | bash`
Expand Down Expand Up @@ -56,15 +56,15 @@

### 釘選發布版(指定某個已發布版本)

將 marketplace 釘到某個 release 標籤——例如最新的 `v0.6.0`:
將 marketplace 釘到某個 release 標籤——例如最新的 `v0.6.6`:

```
/plugin marketplace add arcobaleno64/gemini-plugin-cc@v0.6.0
/plugin marketplace add arcobaleno64/gemini-plugin-cc@v0.6.6
/plugin install gemini@gemini-plugin-cc
/reload-plugins
```

> Claude Code 從 git tree 安裝外掛,**並非**從 GitHub Releases 的 tarball——`@<tag>` 選的是 [Release](https://github.com/arcobaleno64/gemini-plugin-cc/releases) 背後的 git 標籤。釘版安裝**不會**自動更新;欲升至新版,請以新標籤重新加入 marketplace(例如 `…@v0.6.1`)。
> Claude Code 從 git tree 安裝外掛,**並非**從 GitHub Releases 的 tarball——`@<tag>` 選的是 [Release](https://github.com/arcobaleno64/gemini-plugin-cc/releases) 背後的 git 標籤。釘版安裝**不會**自動更新;欲升至新版,請以新標籤重新加入 marketplace(例如 `…@v0.6.7`)。

接著執行 `/gemini:setup`——若 Gemini CLI 尚未安裝且 npm 可用,指令會提供自動安裝選項。

Expand Down
1 change: 1 addition & 0 deletions plugins/gemini/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

### Documentation
- **macOS AGY is now platform-verified.** On macOS (agy 1.0.7) the AGY brain root is `~/.gemini/antigravity-cli/brain` — the same path already first in `agyBrainRoots()` — so `--engine agy` works out of the box: `gemini-companion.mjs task --engine agy` was run end-to-end on macOS and recovered the response from the transcript (`<conv>/.system_generated/logs/transcript{,_full}.jsonl`, matching the expected layout), and the upstream no-pipe behavior of `agy --print` ([google-gemini/gemini-cli#27466](https://github.com/google-gemini/gemini-cli/issues/27466)) was reproduced on macOS (0 bytes reach stdout through a pipe), confirming transcript recovery is required there too. Updated README (EN + zh-TW) Engine Routing / Troubleshooting / Known limitations, the `gemini-prompting` antipatterns reference, and the `agy-transcript.mjs` platform notes; TODO-3 (platform paths) is resolved, and the "no brain root" reason string now tells the user to run `agy` once instead of pointing at an internal TODO. No behavior change — comments, docs, and one user-facing message only.
- **README install snippets and dependency table refreshed to the current release.** Pinned-install examples now reference the latest tag `v0.6.6` (was the stale `v0.6.0`), the "newer tag" example bumped to `v0.6.7`, and the AGY dependency row reads `≥ 1.0.3` (1.0.7 verified on macOS). Docs only, no behavior change.

## 0.6.6 — 2026-06-09 — review retry resilience

Expand Down