# 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. Use when this capability is needed.

- Skill: `tomevault-io/delegate-gemini-review` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/delegate-gemini-review`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/delegate-gemini-review/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/delegate-gemini-review

---


# Delegate Review to Gemini

Hand off a read-only code review of current changes to Gemini CLI from a Codex session.

## When to use

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 branch`

The user may include optional focus text after the trigger.

## Instructions

1. Capture any focus text from the user's request.
2. Run Gemini CLI non-interactively. Hybrid C: prefer the existing `/gemini:review` command if available, otherwise the prompt is fully inlined.

   ```bash
   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>'
   ```

3. Capture stdout and summarize the review findings.
4. Highlight blocking issues vs nits.
5. Do NOT auto-apply suggestions — the user decides what to act on.

---
> Source: [endavis/pyproject-template](https://github.com/endavis/pyproject-template) — distributed by [TomeVault](https://tomevault.io).
<!-- tomevault:4.0:skill_md:2026-06-16 -->

