Skip to content
Development
Skill

/codex-review

Run AI-powered code review using the codex CLI. Use when the user asks to \"codex review\", \"run codex review\", or \"review a commit with codex\".

From plugin
turbo
40279 skills
Install
$ npx -y skills add tobihagemann/turbo --skill codex-review --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/codex-review

Context preview

The summary Claude sees to decide when to auto-load this skill.

Run AI-powered code review using the codex CLI. Use when the user asks to \"codex review\", \"run codex review\", or \"review a commit with codex\".

SKILL.md

codex-review.SKILL.md
name: codex-review
description: "Run AI-powered code review using the codex CLI. Use when the user asks to \"codex review\", \"run codex review\", or \"review a commit with codex\"."

Codex Review

AI-powered code review via the codex CLI. Runs non-interactively.

Uncommitted Changes

codex review --uncommitted

Against a Base Branch

codex review --base main
codex review --base develop

Specific Commit

codex review --commit <sha>
codex review --commit HEAD~1

Custom Prompt

Cannot be combined with `--uncommitted`, `--base`, or `--commit`.

codex review "Focus on security issues and error handling"

Options

  • Use `--title` to add context when reviewing feature branches or PRs
  • Run via the Bash tool (`timeout: 600000`, do not set `run_in_background`)
Ships withturbo

A composable dev process for agentic coding harnesses, packaged as modular skills. Turbo has sibling editions for Claude Code and Codex. The Claude Code edition is production-tested.

Get the whole plugin
Stats
402
Stars
30
Forks
Active
Maintenance
Shell
Language
MIT
License
2d ago
Last commit
6mo ago
Created

Repo: tobihagemann/turbo

Other skills on turbo.

audit
Skill

audit

Project-wide health audit pipeline that fans out to all analysis skills in parallel, evaluates findings, and produces a unified report at .turbo/audit.md. Use…