$npx -y skills add tobihagemann/turbo --skill codex-reviewRun 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\".
| 1 | # Codex Review |
| 2 | |
| 3 | AI-powered code review via the codex CLI. Runs non-interactively. |
| 4 | |
| 5 | ## Uncommitted Changes |
| 6 | |
| 7 | ```bash |
| 8 | codex review --uncommitted |
| 9 | ``` |
| 10 | |
| 11 | ## Against a Base Branch |
| 12 | |
| 13 | ```bash |
| 14 | codex review --base main |
| 15 | codex review --base develop |
| 16 | ``` |
| 17 | |
| 18 | ## Specific Commit |
| 19 | |
| 20 | ```bash |
| 21 | codex review --commit <sha> |
| 22 | codex review --commit HEAD~1 |
| 23 | ``` |
| 24 | |
| 25 | ## Custom Prompt |
| 26 | |
| 27 | Cannot be combined with `--uncommitted`, `--base`, or `--commit`. |
| 28 | |
| 29 | ```bash |
| 30 | codex review "Focus on security issues and error handling" |
| 31 | ``` |
| 32 | |
| 33 | ## Options |
| 34 | |
| 35 | - Use `--title` to add context when reviewing feature branches or PRs |
| 36 | - Run via the Bash tool (`timeout: 600000`, do not set `run_in_background`) |