Back to Marketplace
FREE
Scanned
Grow Business

Gemini CLI Integration Skill

Wield Google's Gemini CLI as a powerful auxiliary tool for code generation, review, analysis, and web research. Use when tasks benefit from a second AI perspective, current web information via Google Search, codebase architecture analysis, or paralle

New skill
No reviews yet
New skill
🤖 Claude Code
FREE

Free to install — no account needed

Copy the command below and paste into your agent.

Instant access • No coding needed • No account needed

What you get in 5 minutes

  • Full skill code ready to install
  • Works with 2 AI agents
  • Lifetime updates included
SecureBe the first

Description

--- name: gemini-cli description: Wield Google's Gemini CLI as a powerful auxiliary tool for code generation, review, analysis, and web research. Use when tasks benefit from a second AI perspective, current web information via Google Search, codebase architecture analysis, or parallel code generation. Also use when user explicitly requests Gemini operations. allowed-tools: - Bash - Read - Write - Grep - Glob --- # Gemini CLI Integration Skill This skill enables Claude Code to effectively orchestrate Gemini CLI (v0.16.0+) with Gemini 3 Pro for code generation, review, analysis, and specialized tasks. ## When to Use This Skill ### Ideal Use Cases 1. **Second Opinion / Cross-Validation** - Code review after writing code (different AI perspective) - Security audit with alternative analysis - Finding bugs Claude might have missed 2. **Google Search Grounding** - Questions requiring current internet information - Latest library versions, API changes, documentation updates - Current events or recent releases 3. **Codebase Architecture Analysis** - Use Gemini's `codebase_investigator` tool - Understanding unfamiliar codebases - Mapping cross-file dependencies 4. **Parallel Processing** - Offload tasks while continuing other work - Run multiple code generations simultaneously - Background documentation generation 5. **Specialized Generation** - Test suite generation - JSDoc/documentation generation - Code translation between languages ### When NOT to Use - Simple, quick tasks (overhead not worth it) - Tasks requiring immediate response (rate limits cause delays) - When context is already loaded and understood - Interactive refinement requiring conversation ## Core Instructions ### 1. Verify Installation ```bash command -v gemini || which gemini ``` ### 2. Basic Command Pattern ```bash gemini "[prompt]" --yolo -o text 2>&1 ``` Key flags: - `--yolo` or `-y`: Auto-approve all tool calls - `-o text`: Human-readable output - `-o json`: Structured output with stats - `-m gemini-2.5-flash`: Use faster model for simple tasks ### 3. Critical Behavioral Notes **YOLO Mode Behavior**: Auto-approves tool calls but does NOT prevent planning prompts. Gemini may still present plans and ask "Does this plan look good?" Use forceful language: - "Apply now" - "Start immediately" - "Do this without asking for confirmation" **Rate Limits**: Free tier has 60 requests/min, 1000/day. CLI auto-retries with backoff. Expect messages like "quota will reset after Xs". ### 4. Output Processing For JSON output (`-o json`), parse: ```json { "response": "actual content", "stats": { "models": { "tokens": {...} }, "tools": { "byName": {...} } } } ``` ## Quick Reference Commands ### Code Generation ```bash gemini "Create [description] with [features]. Output complete file content." --yolo -o text ``` ### Code Review ```bash gemini "Review [file] for: 1) features, 2) bugs/security issues, 3) improvements" -o text ``` ### Bug Fixing ```bash gemini "Fix these bugs in [file]: [list]. Apply fixes now." --yolo -o text ``` ### Test Generation ```bash gemini "Generate [Jest/pytest] tests for [file]. Focus on [areas]." --yolo -o text ``` ### Documentation ```bash gemini "Generate JSDoc for all functions in [file]. Output as markdown." --yolo -o text ``` ### Architecture Analysis ```bash gemini "Use codebase_investigator to analyze this project" -o text ``` ### Web Research ```bash gemini "What are the latest [topic]? Use Google Search." -o text ``` ### Faster Model (Simple Tasks) ```bash gemini "[prompt]" -m gemini-2.5-flash -o text ``` ## Error Handling ### Rate Limit Exceeded - CLI auto-retries with backoff - Use `-m gemini-2.5-flash` for lower priority tasks - Run in background for long operations ### Command Failures - Check JSON output for detailed error stats - Verify Gemini is authenticated: `gemini --version` - Check `~/.gemini/settings.json` for config issues ### Validation After Generation Always verify Gemini's output: - Check for security vulnerabilities (XSS, injection) - Test functionality matches requirements - Review code style consistency - Verify dependencies are appropriate ## Integration Workflow ### Standard Generate-Review-Fix Cycle ```bash # 1. Generate gemini "Create [code]" --yolo -o text # 2. Review (Gemini reviews its own work) gemini "Review [file] for bugs and security issues" -o text # 3. Fix identified issues gemini "Fix [issues] in [file]. Apply now." --yolo -o text ``` ### Background Execution For long tasks, run in background and monitor: ```bash gemini "[long task]" --yolo -o text 2>&1 & # Monitor with BashOutput tool ``` ## Gemini's Unique Capabilities These tools are available only through Gemini: 1. **google_web_search** - Real-time internet search via Google 2. **codebase_investigator** - Deep architectural analysis 3. **save_memory** - Cross-session persistent memory ## Configuration ### Project Context (Optional) Create `.gemini/GEMINI.md` in project root for persistent context that Gemini will automatically read. ### Session Management List sessions: `gemini --list-sessions` Resume session: `echo "follow-up" | gemini -r [index] -o text` ## See Also - `reference.md` - Complete command and flag reference - `templates.md` - Prompt templates for common operations - `patterns.md` - Advanced integration patterns - `tools.md` - Gemini's built-in tools documentation

Preview in:

Security Status

Scanned

Passed automated security checks

Related AI Tools

More Grow Business tools you might like

codex-collab

Free

Use when the user asks to invoke, delegate to, or collaborate with Codex on any task. Also use PROACTIVELY when an independent, non-Claude perspective from Codex would add value — second opinions on code, plans, architecture, or design decisions.

Rails Upgrade Analyzer

Free

Analyze Rails application upgrade path. Checks current version, finds latest release, fetches upgrade notes and diffs, then performs selective upgrade preserving local customizations.

Asta MCP — Academic Paper Search

Free

Domain expertise for Ai2 Asta MCP tools (Semantic Scholar corpus). Intent-to-tool routing, safe defaults, workflow patterns, and pitfall warnings for academic paper search, citation traversal, and author discovery.

Hand Drawn Diagrams

Free

Create hand-drawn Excalidraw diagrams, flows, explainers, wireframes, and page mockups. Default to monochrome sketch output; allow restrained color only for page mockups when the user explicitly wants webpage-like fidelity.

Move Code Quality Checker

Free

Analyzes Move language packages against the official Move Book Code Quality Checklist. Use this skill when reviewing Move code, checking Move 2024 Edition compliance, or analyzing Move packages for best practices. Activates automatically when working

Claude Memory Kit

Free

"Persistent memory system for Claude Code. Your agent remembers everything across sessions and projects. Two-layer architecture: hot cache (MEMORY.md) + knowledge wiki. Safety hooks prevent context loss. /close-day captures your day in one command. Z