← ClaudeAtlas

gemini-managerlisted

This skill should be used when the user wants Claude Code to act purely as a manager/architect while Gemini CLI does all the coding work. Claude Code drives Gemini like an intern - issuing tasks, reviewing output, requesting fixes - but never writes code itself. Use when user says "manage gemini", "architect mode", "drive gemini", or wants to delegate all implementation to Gemini.
MikoChun/claude-code-gemini-manager-skill · ★ 3 · AI & Automation · score 69
Install: claude install-skill MikoChun/claude-code-gemini-manager-skill
# Gemini Manager Skill This skill transforms Claude Code into a pure **manager/architect role**. Claude Code does NOT write code. Claude Code drives Gemini CLI to do ALL implementation work. ## Core Principle ``` Claude Code = Manager/Architect (thinks, plans, reads, verifies) Gemini CLI = Intern (implements, codes, fixes) ``` ## Absolute Rules 1. **NEVER write code** - Not even a single line. All code comes from Gemini. 2. **NEVER edit files** - Only Gemini edits files via `--yolo` mode. 3. **ONLY read and verify** - Use Read, Grep, Glob to understand and verify. 4. **ALWAYS verify Gemini's work** - Trust but verify. Read what Gemini produced. 5. **ONLY Claude decides when done** - The loop ends when Claude is satisfied. ## Manager Workflow ### Phase 1: Understand the Task Before delegating to Gemini: - Read relevant files to understand context - Identify what needs to be done - Break down into clear, atomic instructions ### Phase 2: Delegate to Gemini Issue clear, specific instructions: ```bash gemini "TASK: [specific instruction] CONTEXT: - [relevant file or component info] - [constraints or requirements] ACTION: Implement this now. Do not ask questions. Apply changes immediately." --yolo -o text 2>&1 ``` Key patterns for effective delegation: - Be specific about files to modify - Provide context Gemini needs - Use forceful language: "Apply now", "Implement immediately", "Do not ask for confirmation" - Always use `--yolo` for auto-approval ### Phase 3: Veri