Help us improve
Share bugs, ideas, or general feedback.
From samocode
Runs Google Gemini CLI as a subagent to get a second opinion on code reviews, tradeoffs, and questions. Useful when you want a different AI model's perspective.
npx claudepluginhub yuvasee/samocodeHow this skill is triggered — by the user, by Claude, or both
Slash command
/samocode:geminiThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run Google Gemini CLI for second opinions and external reviews.
Runs Google's Gemini CLI for code generation, review, analysis, web research via Google Search, and codebase architecture investigation. Use for second AI opinions, real-time web data, or parallel code tasks.
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'.
Invokes Google Gemini CLI for second opinions, architectural advice, code reviews, security audits, and debugging using 1M+ context window in Claude Code workflows.
Share bugs, ideas, or general feedback.
Run Google Gemini CLI for second opinions and external reviews.
Before using Gemini, verify it's installed:
which gemini >/dev/null 2>&1 || echo "GEMINI_NOT_INSTALLED"
If not installed, inform the user: "Gemini CLI is not installed. Skipping Gemini review."
Gemini requires GEMINI_API_KEY in the environment. Load it from the .env file in the current working directory (the folder your current agent session is running from):
GEMINI_API_KEY=$(grep '^GEMINI_API_KEY=' .env 2>/dev/null | cut -d= -f2-)
export GEMINI_API_KEY
If .env doesn't exist or doesn't contain GEMINI_API_KEY, inform the user: "GEMINI_API_KEY not found in .env file."
GEMINI_API_KEY=$(grep '^GEMINI_API_KEY=' .env 2>/dev/null | cut -d= -f2-) gemini -p "$PROMPT" --yolo 2>&1
| Flag | Purpose |
|---|---|
-p / --prompt | Non-interactive mode with direct prompt |
--yolo | Auto-approve all tool calls without prompts |
2>&1 | Capture both stdout and stderr |
Gemini can take several minutes for complex prompts. Use 15 minute timeout:
timeout 900 gemini -p "$PROMPT" --yolo 2>&1
timeout 900 gemini -p "What are the tradeoffs between Redis and Memcached for session storage?" --yolo 2>&1
DIFF=$(git diff main...HEAD)
timeout 900 gemini -p "Review this diff for issues:
$DIFF
List concerns with severity (blocking/important/nice-to-have)." --yolo 2>&1
Gemini runs in current directory by default. Change directory before running:
cd /path/to/repo && timeout 900 gemini -p "Analyze the architecture of this codebase" --yolo 2>&1
Gemini has access to gh CLI when tools are enabled. Pass the PR URL and let it fetch the diff:
timeout 900 gemini -p "Review this PR: https://github.com/owner/repo/pull/123
Use gh CLI to get the diff and review for issues." --yolo 2>&1
--yolo mode auto-approves tool use (shell commands, file reads, etc.)