From director-mode-lite
Delegates tasks like long document analysis, multimodal processing, research, summarization, and large file handling to Google Gemini CLI to preserve Claude context.
How this skill is triggered — by the user, by Claude, or both
Slash command
/director-mode-lite:handoff-geminiThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Delegate tasks to Google Gemini CLI to save Claude context.
Delegate tasks to Google Gemini CLI to save Claude context.
| 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 |
# Install Gemini CLI (Google)
npm install -g @google/gemini-cli
# Or via: https://github.com/google-gemini/gemini-cli
## Task for Gemini
**Goal**: [What needs to be done]
**Files**: [Which files to analyze]
**Output**: [What format to return]
# 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
## Task: Research API Best Practices
**Command:**
gemini "Research REST API versioning strategies. Summarize pros/cons."
**After:**
- Review research
- Share relevant findings
- Implement chosen strategy
npx claudepluginhub claude-world/director-mode-liteDelegates tasks to Gemini CLI for large-context analysis like broad codebase reviews or long-document processing. Activates on explicit requests such as 'use gemini' or 'delegate to gemini'.
Delegates large context (>100K tokens) and multimodal tasks (images, screenshots) to Gemini CLI for speed/cost efficiency. Useful for analyzing large codebases or visual content.
Provides decision criteria, execution patterns, and handling for delegating tasks from Claude to Gemini CLI. Use for cross-agent optimization, risky commands, or TUI needs.