with one click
delegate-gemini-review
// Delegate a read-only code review of current changes from a Codex session to Gemini CLI. Hands the review to Gemini via `gemini -p` and returns findings to Codex.
// Delegate a read-only code review of current changes from a Codex session to Gemini CLI. Hands the review to Gemini via `gemini -p` and returns findings to Codex.
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | delegate-gemini-review |
| description | Delegate a read-only code review of current changes from a Codex session to Gemini CLI. Hands the review to Gemini via `gemini -p` and returns findings to Codex. |
Hand off a read-only code review of current changes to Gemini CLI from a Codex session.
Use this skill when the user explicitly wants a review done by Gemini (not Codex itself).
Expected prompt shape:
$delegate-gemini-review review the current changes$delegate-gemini-review have Gemini review this branchThe user may include optional focus text after the trigger.
Capture any focus text from the user's request.
Run Gemini CLI non-interactively. Hybrid C: prefer the existing /gemini:review command if available, otherwise the prompt is fully inlined.
gemini -y -p 'Review the current uncommitted changes and the current branch vs main, read-only. 1) Run `git status` and `git diff` to see what changed. 2) Run `git log main..HEAD --oneline` for branch context. 3) Read AGENTS.md and any relevant ADRs in docs/decisions/. 4) Identify correctness issues, risks, missing tests, style/convention violations, and concrete suggestions. 5) Print findings to stdout in a structured format (Summary / Issues / Suggestions). Do NOT modify any files. Focus area (optional): <focus>'
Capture stdout and summarize the review findings.
Highlight blocking issues vs nits.
Do NOT auto-apply suggestions — the user decides what to act on.