From gemini-bridge
Deep code analysis and architecture review via Gemini CLI. Token-efficient alternative to Claude analyzing large codebases. Triggers on: "analyze code", "review architecture", "deep analysis", "analyze this file", "codebase analysis"
How this skill is triggered — by the user, by Claude, or both
Slash command
/gemini-bridge:gemini-analyzeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Perform deep analysis using Gemini CLI to save Claude tokens.
Perform deep analysis using Gemini CLI to save Claude tokens.
Identify the target:
Build analysis prompt and write to file:
cat > /tmp/gemini_prompt.txt << 'GEMINI_EOF'
Perform a detailed analysis. Provide structured output with:
- Summary (2-3 sentences)
- Key Findings (bullet points)
- Recommendations (prioritized)
- Action Items (specific next steps)
Be concise. Use bullet points. Be specific with file/line references.
Code/Context to analyze:
[INSERT CODE HERE]
GEMINI_EOF
bash ~/.claude/gemini-bridge.sh --file /tmp/gemini_prompt.txt
Return results structured as: Summary → Findings → Recommendations → Actions
Use timeout 600000ms — be patient, never kill mid-execution
npx claudepluginhub andytargino/gemini-bridge --plugin gemini-bridgePerforms deep codebase analysis for patterns, architecture, implementation details, and technical debt using codebase-analyst agent. Analyzes concepts, modules, questions, or provides overviews.
Explores large codebases using Gemini CLI's context window, generating reports on architecture, dependencies, patterns, or all. For unfamiliar repos or those exceeding 50K tokens.
Analyzes codebases with Gemini's codebase_investigator tool for architecture overviews, dependency mapping, onboarding unfamiliar code, legacy systems, and technical debt identification.