handoff-gemini
Delegate tasks to Gemini CLI to save Claude context
git clone --depth 1 https://github.com/claude-world/director-mode-lite /tmp/handoff-gemini && cp -r /tmp/handoff-gemini/skills/handoff-gemini ~/.claude/skills/handoff-geminiSKILL.md
# Handoff to Gemini CLI Delegate tasks to Google Gemini CLI to save Claude context. --- ## When to Use Gemini | Use Gemini For | Keep in Claude | |----------------|----------------| | Long document analysis | Complex coding | | Multimodal tasks | Architecture decisions | | Research and summarization | Multi-step workflows | | Large file comprehension | Problem analysis | --- ## Prerequisites ```bash # Install Gemini CLI (Google) npm install -g @google/gemini-cli # Or via: https://github.com/google-gemini/gemini-cli ``` --- ## Handoff Process ### 1. Prepare Context ```markdown ## Task for Gemini **Goal**: [What needs to be done] **Files**: [Which files to analyze] **Output**: [What format to return] ``` ### 2. Generate Command ```bash # Analyze large file gemini "Summarize components in codebase" -f src/**/*.ts # Research task gemini "Research best practices for [topic]" # Document analysis gemini "Extract key points" -f docs/spec.md ``` ### 3. Provide Instructions - Why Gemini is suitable - Expected output - How to continue workflow --- ## Example ```markdown ## Task: Research API Best Practices **Command:** gemini "Research REST API versioning strategies. Summarize pros/cons." **After:** - Review research - Share relevant findings - Implement chosen strategy ``` --- ## Benefits - **Token Savings**: Research tasks don't consume Claude context - **Long Context**: Handles very large documents - **Specialization**: Use each AI's strengths
Track development session events in a daily markdown changelog, including file changes, test results, and key decisions.
Expert on creating and configuring custom Claude Code agents. Helps design specialized agents for project-specific tasks.
Expert on CLAUDE.md design patterns, best practices, and project configuration. Essential for project initialization and customization.
Code review specialist for quality, security, and best practices
Decision-making agent for Self-Evolving Loop. Evaluates validation results and decides next action (continue, evolve, or ship).
Debugging specialist for root cause analysis and problem resolution
Documentation specialist for README, API docs, and code comments
Lightweight orchestrator for Self-Evolving Loop with Meta-Engineering integration. Coordinates phases, manages memory, and handles lifecycle. Only returns brief summaries.