with one click
delegate-claude-review
// Delegate a read-only code review of current changes from a Codex session to Claude Code. Hands the review to Claude via `claude -p` and returns findings to Codex.
// Delegate a read-only code review of current changes from a Codex session to Claude Code. Hands the review to Claude via `claude -p` and returns findings to Codex.
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | delegate-claude-review |
| description | Delegate a read-only code review of current changes from a Codex session to Claude Code. Hands the review to Claude via `claude -p` and returns findings to Codex. |
Hand off a read-only code review of current changes to Claude Code from a Codex session.
Use this skill when the user explicitly wants a review done by Claude (not Codex itself).
Expected prompt shape:
$delegate-claude-review review the current changes$delegate-claude-review have Claude review this branchThe user may include optional focus text after the trigger.
Capture any focus text from the user's request.
Run Claude Code non-interactively. Hybrid C: prefer the existing /claude:review command if available, otherwise the prompt is fully inlined.
claude -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.