From samocode
Run Google Gemini CLI as a subagent for second opinions, code reviews, and questions. Use when you want a different AI model's perspective.
npx claudepluginhub yuvasee/samocodeThis skill uses the workspace's default tool permissions.
Run Google Gemini CLI for second opinions and external reviews.
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
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.)