← ClaudeAtlas

gemini-clilisted

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.
Junayedahmedd/gemini_cli_skill · ★ 3 · AI & Automation · score 69
Install: claude install-skill Junayedahmedd/gemini_cli_skill
# 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 fl