From gemini-bridge
Generate implementation plans via Gemini CLI. Saves Claude tokens for actual coding. Triggers on: "plan implementation", "create plan", "design feature", "plan this", "architecture plan", "implementation strategy"
How this skill is triggered — by the user, by Claude, or both
Slash command
/gemini-bridge:gemini-planThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use Gemini to create detailed implementation plans, saving Claude tokens for coding.
Use Gemini to create detailed implementation plans, saving Claude tokens for coding.
Read current project context (package.json, key configs, file structure)
Build planning prompt:
cat > /tmp/gemini_prompt.txt << 'GEMINI_EOF'
Create a detailed implementation plan for: [TASK]
Current project context:
[PROJECT INFO - tech stack, structure, key files]
Provide:
1. Architecture decisions and trade-offs
2. Files to create/modify (with full paths)
3. Step-by-step implementation order
4. Key interfaces and types to define
5. Edge cases and error handling strategy
6. Testing approach
7. Estimated complexity per step (LOW/MEDIUM/HIGH)
Be specific and actionable. Use bullet points.
GEMINI_EOF
bash ~/.claude/gemini-bridge.sh --file /tmp/gemini_prompt.txt
Return structured plan
Use timeout 600000ms
After Gemini creates the plan:
npx claudepluginhub andytargino/gemini-bridge --plugin gemini-bridgeGenerates structured, Claude-executable implementation plans using Gemini AI reasoning. Includes CLAUDE.md context and optional file globs for multi-file tasks.
Prompts Claude to produce a numbered step-by-step implementation plan before writing code. Use for complex tasks touching multiple files or with unclear requirements.
Generates detailed implementation plans for features, refactors, migrations, bug fixes, and architectural changes using multi-agent collaboration. Outputs structured Markdown files with steps, scope, and risks.