Gemini CLI Skill for Claude Code — Summary
A single-skill Claude Code plugin that teaches Claude how to orchestrate Google's Gemini CLI as a powerful auxiliary AI tool. The skill provides detailed instructions, prompt templates, integration patterns, and reference docs so Claude can delegate tasks — code generation, security audits, test writing, web research, and architecture analysis — to Gemini 3 Pro running locally on the user's machine.
The core value proposition is multi-model parallelism without any backend infrastructure: Claude spawns gemini as a subprocess via Bash, the skill guides prompt construction and flag usage, and Claude post-processes the output. The --yolo / -o text pattern is the central primitive, with a JSON output variant for programmatic parsing.
The skill bundles five markdown files: SKILL.md (core instructions), reference.md (CLI flag reference), templates.md (reusable prompts), patterns.md (integration workflows like Generate-Review-Fix), and tools.md (Gemini-specific built-in tools including google_web_search, codebase_investigator, and save_memory).
This is a pure "skills-only behavioral framework" — no commands, no hooks, no MCP server. It extends Claude with awareness of a second AI rather than augmenting Claude's own reasoning. Compared to seeds: closest to superpowers (skills-only, zero commands, zero hooks), but entirely focused on cross-model delegation rather than spec-driven workflow enforcement. Unlike ccmemory (which uses Neo4j MCP for memory), this uses Gemini's native save_memory tool for cross-session persistence.