From guide
Use when the user asks to run Gemini CLI (gemini, gemini resume) or references Google Gemini for code analysis, refactoring, or automated editing
How this skill is triggered — by the user, by Claude, or both
Slash command
/guide:geminiThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
| Model | Best for |
| Model | Best for |
|---|---|
gemini-3.1-pro | Most capable — complex reasoning, agentic tasks, coding, long-context |
gemini-3-flash | High-performance at lower cost, general-purpose |
gemini-3.1-flash-lite | Fastest and cheapest — lightweight tasks, high-volume |
gemini-2.5-pro | Advanced reasoning, deep coding (stable, well-tested) |
gemini-2.5-flash | Best price-performance ratio, low-latency |
Default recommendation: gemini-3.1-pro for complex tasks, gemini-3-flash for speed.
AskUserQuestion) which model to use (default: gemini-3.1-pro) AND which approval mode (default, auto_edit, yolo, or plan) in a single prompt with two questions.-m, --model <MODEL> — the model to use--approval-mode <MODE> — default (prompt), auto_edit (auto-approve edits), yolo (auto-approve all), plan (read-only)-p, --prompt "<PROMPT>" — run in non-interactive (headless) mode-o text — text output format for clean parsing| Use case | Approval mode | Key flags |
|---|---|---|
| Read-only review or analysis | plan | --approval-mode plan -o text |
| Apply local edits (auto-approve edits) | auto_edit | --approval-mode auto_edit -o text |
| Full auto (approve everything) | yolo | -y -o text |
| Resume recent session | Inherited | -r latest -p "new prompt" -o text |
| Include extra directories | Match task needs | --include-directories <DIR> |
gemini command, immediately use AskUserQuestion to confirm next steps, collect clarifications, or decide whether to resume.gemini -r latest -p "new prompt" -o text. The resumed session uses the same context from the original session.gemini -r latest -p "follow-up prompt" -o textgemini -r 5 -p "follow-up prompt" -o textgemini --list-sessionsGemini is powered by Google models with their own knowledge cutoffs and limitations. Treat Gemini as a colleague, not an authority.
gemini -r latest -p "This is Claude (<your current model name>) following up. I disagree with [X] because [evidence]. What's your take?" -o text
gemini --version or a gemini command exits non-zero; request direction before retrying.--approval-mode yolo or -y, ask the user for permission using AskUserQuestion unless already given.AskUserQuestion.npx claudepluginhub ondrej-svec/heart-of-gold-toolkit --plugin guideInvokes Google Gemini CLI for complex reasoning, research, and AI tasks in headless mode. Supports preview models, fallbacks, and session continuation.
Invokes OpenAI Codex and Google Gemini CLIs via Bash for second opinions, code reviews, and alternative analysis. Useful when users request external AI verification or explicitly say 'ask codex' or 'ask gemini'.
Delegates tasks to Gemini CLI for large-context analysis like broad codebase reviews or long-document processing. Activates on explicit requests such as 'use gemini' or 'delegate to gemini'.