From gemini-bridge
Code review via Gemini CLI — finds bugs, security issues, performance problems. Triggers on: "review code", "code review", "find bugs", "check for issues", "review this PR", "review diff", "security review"
How this skill is triggered — by the user, by Claude, or both
Slash command
/gemini-bridge:gemini-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Perform thorough code review using Gemini CLI.
Perform thorough code review using Gemini CLI.
Gather code to review:
git diff and captureBuild review prompt:
cat > /tmp/gemini_prompt.txt << 'GEMINI_EOF'
Perform a thorough code review. Check for:
1. Bugs and logic errors
2. Security vulnerabilities (XSS, injection, auth issues)
3. Performance problems (N+1 queries, memory leaks, unnecessary re-renders)
4. Code smells and maintainability issues
5. Missing error handling
6. Type safety issues
Rate each finding as: CRITICAL / WARNING / SUGGESTION
Group by severity. Be specific with file:line references.
Code to review:
[INSERT CODE HERE]
GEMINI_EOF
bash ~/.claude/gemini-bridge.sh --file /tmp/gemini_prompt.txt
Structure response as:
Use timeout 600000ms — be patient
npx claudepluginhub andytargino/gemini-bridge --plugin gemini-bridgeReviews code changes, PRs, and diffs for security vulnerabilities, performance issues, correctness bugs, and maintainability problems with tables for issues and suggestions.
Reviews code for best practices, security issues, bugs, error handling, performance, and testing coverage using Read, Grep, Glob tools. Use for PRs, code changes, quality analysis, security audits.
Reviews git diffs using Gemini for bugs, security vulnerabilities, style inconsistencies, performance issues, and more. Ideal for second opinions on changes before committing.