← ClaudeAtlas

codex-reviewlisted

Run an independent Codex code review using GPT-5.6 with xhigh reasoning. Use when user says "codex review", "cross-model review", "run codex on this", or as part of a multi-reviewer panel. Collects git diff + changed files, sends to Codex CLI, returns structured findings.
dgrissen2/persona-review-kit · ★ 0 · Code & Development · score 67
Install: claude install-skill dgrissen2/persona-review-kit
# Codex Review Independent cross-model code review using OpenAI Codex (GPT-5.6, xhigh reasoning). Run from inside Claude Code to get a second opinion from a different model family, optionally alongside Claude-side persona reviewers. ## Why This Exists Codex reviews from a different model family than Claude, which means different blind spots. It does NOT see Claude's planning notes or prior review comments — only the code and diff. This anti-anchoring property is what makes the ensemble valuable. ## Instructions ### Step 1: Determine Review Scope Check what the user wants reviewed: - **If `$ARGUMENTS` contains a file path or directory**: Review that specific path - **If `$ARGUMENTS` contains "pr" or "branch"**: Review all changes on the current branch vs main - **If `$ARGUMENTS` is empty**: Review all uncommitted changes (staged + unstaged) - **If `$ARGUMENTS` contains "panel"**: Review all changes since the last commit on main ### Step 2: Collect the Diff and Changed Files ```bash # For uncommitted changes: DIFF=$(git diff HEAD) CHANGED_FILES=$(git diff HEAD --name-only | grep '\.py$') # For branch changes: DIFF=$(git diff main...HEAD) CHANGED_FILES=$(git diff main...HEAD --name-only | grep '\.py$') # For specific path: DIFF=$(git diff HEAD -- "$PATH") CHANGED_FILES="$PATH" ``` **Optional (requires the Serena MCP server — not part of this kit):** if Serena is installed and there are **more than 15 changed files**, you can use it to build a focused review package i