← ClaudeAtlas

codex-code-reviewlisted

Automate code review remediation loops with the codex CLI. Requests reviews from codex, classifies findings by severity (P0-P4), fixes critical issues (P0/P1) through iterative cycles, defers quality improvements to backlog, and escalates after 3 review cycles. Use when working with code that needs structured remediation: 'codex review' in a request triggers this workflow.
NickCrew/Claude-Cortex · ★ 15 · Code & Development · score 74
Install: claude install-skill NickCrew/Claude-Cortex
# Codex Code Review Loop ## Overview This skill orchestrates the complete remediation workflow for code under review by the codex agent. It handles: - **Requesting reviews** from codex using the `codex --full-auto c` CLI - **Parsing review output** to identify P0 (security/correctness), P1 (reliability), P2-P4 (quality) findings - **Remediating critical issues** through up to 3 review-fix-review cycles - **Deferring quality improvements** to backlog with implementation plans and `origin:ai-review` labels - **Monorepo handling** for selective file commits when working alongside other agents - **Circuit breaker escalation** after 3 cycles if P0/P1 issues persist ## When to Use Trigger this skill when code requires codex review. Common usage patterns: - **"codex review this code"** — Initiate review loop on current changes - **"run codex review on my changes"** — Same as above - **"codex review --uncommitted"** — Review all uncommitted changes - **"codex review --commit <SHA>"** — Review specific commit in monorepo - **Questions about codex** (e.g., "how does codex work?") — Do not trigger this skill; answer directly **Do not trigger on questions.** Only activate for direct review requests. --- ## The Review Loop: Step by Step ``` ENTRY: User requests codex review or skill is triggered by "codex review" in a message ┌──────────────────────────┐ │ 1. INVOKE CODEX REVIEW │ ← Run: codex --full-auto c [--uncommitted|--commit <SHA>|--base <BRANCH>] └──────┬──────────────