agentsclimarketplace

Codex review

Skill ultimatile/development-skills/skills/codex-review

Personalized Development Skills

Install
npx -y skills add ultimatile/development-skills --skill codex-review

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Pre-PR code review on the current branch using the OpenAI Codex CLI, with an iterative fix loop.

SKILL.md

6.8 KB, ~1.6k tokens by cl100k_base, as published. Nobody here has run it

Codex Review

Orchestrate codex exec review to review branch changes and iterate on fixes.

Core commands

Review branch diff against base

codex exec review --base <branch> -o <output-file> </dev/null

This runs git diff <base-SHA> internally and reviews the entire diff. The review covers all committed changes on the current branch relative to the base — both the original work and any subsequent fix commits.

Other review modes

CommandScope
codex exec review --base main </dev/nullAll commits since branching from main
codex exec review --uncommitted </dev/nullStaged + unstaged + untracked changes
codex exec review --commit <SHA> </dev/nullA single commit's diff
codex exec "<inline prompt>" </dev/nullFree-form prompt with inline context (see "Switching to exec with inline context" below)

Output options

FlagEffect
-o <file>Write final review message to file
--jsonEmit JSONL event stream to stdout
"custom prompt"Positional arg — additional review instructions

Switching to exec with inline context

codex exec review --base ... operates on git diff alone — it cannot read GitHub Issues, ADRs, or any design intent encoded outside the diff. For self-contained changes this is fine; for phased rollouts where the judgement criteria live outside the diff, review mode systematically misjudges intentional design decisions as regressions. Switch to free-form codex exec "<inline prompt>" to attach the context.

Trigger — before every codex review, check:

  • Is this commit part of a numbered phase in a tracked Issue?
  • Does the relevant ADR contain phrases like "unmeasured → sentinel X", "tracked separately in a follow-up", "intentional default until <later phase>", "out of this phase's scope"?
  • Are there thresholds, defaults, or scoped-off paths that look like bugs from the diff but are ADR / Issue-intentional?

If any of the above is yes, skip codex exec review and use codex exec "<inline prompt>" instead.

Why the workaround is needed: --base and the positional [PROMPT] are mutually exclusive on codex exec review, so phase context cannot be attached to a review invocation. The free-form codex exec "..." accepts an arbitrary prompt that can direct codex to read the surrounding context first.

Inline prompt template — the prompt should tell codex to:

  1. Run git log <base>..HEAD --oneline and git show <sha> to read the commits.
  2. Read the tracking Issue (gh issue view <n>) and the relevant ADRs (pass absolute paths so codex doesn't have to search).
  3. Enumerate explicitly which states are intentional (sentinel values, scoped-off paths, deferred behaviors) and must NOT be flagged as regressions.
  4. List what the review should focus on (forwarding correctness, default / expert contract consistency, docstring drift, missed call sites, etc. — project-specific).
  5. List what to ignore — the enumerated intentional states from step 3.

For non-phased self-contained changes, keep using vanilla codex exec review --base main. The inline-context workaround is only needed when judgement criteria live outside the diff.

Triaging review output

codex review operates on git diff output alone — it has no access to the broader project context, test results, runtime behavior, or design rationale. This means a significant fraction of its findings will be false positives: technically plausible concerns that don't apply given information the reviewer can't see.

Typical false positive patterns:

  • Assumed standard behavior: "this regex won't match standard X format" when the actual data uses a project-specific format (verified by tests)
  • Missing context on intentional decisions: flagging a design choice as a bug when it was deliberate and tested
  • Hypothetical edge cases: warning about inputs that can't occur given the system's constraints

When presenting review output, triage each finding:

  1. Read the review output and identify each distinct finding (usually formatted as [P1/P2] summary — file:line)
  2. Cross-check against project context you already have — test results, prior conversation, code you've read. You have far more context than the reviewer did.
  3. Classify each finding under the finding-triage SSOT dispositions (actionable / false-positive / uncertain-validity / opens-a-question → research / invariant-premise-check / defer). The common codex-review cases are actionable, false-positive (plausible but wrong given context you have — explain why to the user), and uncertain-validity (you can't tell without more investigation — flag it and investigate). When a finding is real but its fix is non-local, it is opens-a-question → re-enter research rather than patching in place.
  4. Present the triage to the user, not the raw output. Lead with actionable items, note dismissed items with reasoning.

Review-fix loop

Each iteration runs a full, unbiased review of the entire diff against base. Do NOT inject previous review comments into the prompt — this narrows the reviewer's focus and risks missing new regressions introduced by the fix. The reviewer should always see the code with fresh eyes.

Procedure

  1. Run review

    codex exec review --base main -o /tmp/codex-review.md </dev/null
    
  2. Triage the output using the process above. Present classified findings to the user.

  3. If actionable issues are found, the user (or Claude) fixes them and commits.

  4. Re-run the review — same command, same flags. The new diff includes the fix commits, so the reviewer sees the full picture: original changes plus fixes.

  5. Re-triage — a finding dismissed as false positive in iteration N may become relevant in iteration N+1 if the fix changed the surrounding code. Don't carry over dismissals blindly.

  6. Repeat until no actionable findings remain or the user is satisfied.

What "clean" means

No actionable findings after triage. A review with only false positives or minor style suggestions counts as clean — use judgment.

Important constraints

  • Stdin redirect: every codex exec invocation needs </dev/null; hang signal is absence of the OpenAI Codex v... banner after Reading additional input from stdin....
  • Run fresh: run each review with fresh context — fresh reviews are the correct approach for iteration.
  • Non-interactive only: Always use codex exec review, not codex review, when running from scripts or automation. The exec variant runs non-interactively and exits when done.
  • Timeout: Set timeout to 600000ms (10 minutes) when calling from Bash. Reviews of large diffs can take several minutes.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.