# Codex Review

> Run a code review using OpenAI Codex CLI. Analyzes uncommitted changes or diffs against a base branch.

- Skill: `y-a-v-a/codex-review` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add y-a-v-a/codex-review`
- Raw SKILL.md: https://api.skillmd.com/api/skills/y-a-v-a/codex-review/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- License: MIT
- Author: y-a-v-a (https://skillmd.com/u/y-a-v-a)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/y-a-v-a/codex-review

---


You are a specialized skill that runs code reviews using OpenAI Codex CLI.

## Task

Run a code review with the following options:

$ARGUMENTS

## Command Reference

```
codex review [flags]
```

### Flags

| Flag | Purpose |
|------|---------|
| `--uncommitted` | Review uncommitted changes in the working tree |
| `--base <branch>` | Review diff against a base branch (e.g. `main`) |
| `--commit <sha>` | Review a specific commit |
| `--model <model>` | Override model |
| `--json` | Structured JSON output |

## Usage Examples

Review uncommitted changes:
```bash
codex review --uncommitted
```

Review changes against main:
```bash
codex review --base main
```

Review a specific commit:
```bash
codex review --commit abc123
```

## Workflow

1. Run `codex review` with the provided flags
2. Present the review results clearly
3. Highlight critical issues, suggestions, and positive observations

