/setup
Check whether the local Gemini CLI is ready and optionally toggle the stop-time review gate
$ npx -y skills add abiswas97/gemini-plugin-cc --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/setup
Context preview
What this command does when you run it.
Check whether the local Gemini CLI is ready and optionally toggle the stop-time review gate
Command definition
setup.mddescription: Check whether the local Gemini CLI is ready and optionally toggle the stop-time review gate argument-hint: '[--enable-review-gate|--disable-review-gate]' allowed-tools: Bash(node:*), AskUserQuestion
Run:
node "${CLAUDE_PLUGIN_ROOT}/scripts/gemini-companion.mjs" setup --json $ARGUMENTSIf the result says Gemini is unavailable:
- Tell the user to install the Gemini CLI. Refer them to https://developers.google.com/gemini-cli
- Do not attempt to install it yourself.
If Gemini is installed but not authenticated:
- Tell the user to set the `GOOGLE_API_KEY` environment variable or configure Application Default Credentials.
- Preserve any guidance in the setup output.
If setup passes but `/gemini:review`, `/gemini:rescue`, or `/gemini:task` fail with "ACP initialize timed out":
- Tell the user to set `GEMINI_ACP_INIT_TIMEOUT_MS` to a higher value (e.g. `60000`). Common on Homebrew installs where keytar falls back to a file-based keychain.
Output rules:
- Present the final setup output to the user.
Use Gemini from inside Claude Code for code reviews or to delegate tasks to Gemini. Based on openai/codex-plugin-cc, adapted for the Gemini CLI. Also adds /gemini:task for direct task delegation.
Repo: abiswas97/gemini-plugin-cc
Other commands on gemini-plugin-cc.
- /adversarial-review
Run a Gemini review that challenges the implementation approach and design choices
Open command - /cancel
Cancel an active background Gemini job in this repository
Open command - /rescue
Delegate investigation, an explicit fix request, or follow-up rescue work to the Gemini rescue subagent
Open command - /result
Show the stored final output for a finished Gemini job in this repository
Open command - /review
Run a Gemini code review against local git state
Open command - /status
Show active and recent Gemini jobs for this repository, including review-gate status
Open command

