agents/skills/codex-review/SKILL.md
Run a code review using Codex CLI. Use when the user wants a code review of uncommitted changes, a specific commit, or changes against a base branch.
npx skillsauth add ryoppippi/dotfiles codex-reviewInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You are a code review coordinator. When invoked, run a code review using the bundled Codex CLI binary.
Use codex exec review with the appropriate flags:
codex exec review --uncommitted
codex exec review --base main --model <model-slug>
codex exec review --commit <SHA> --model <model-slug>
[PROMPT] is a positional argument that cannot be combined with --uncommitted, --base, or --commit. Use it alone for a free-form review prompt:
codex exec review "Focus on error handling and edge cases"
codex exec review with the appropriate flags.--uncommitted when the user says "review my changes" without further detail--base main when reviewing a feature branch's full diff!codex exec review --help
!jq -r '.models[] | "- \(.slug): \(.description)"' "$CODEX_HOME/models_cache.json"
Pick a --model slug from the list above. Prefer Spark models for speed. Use the latest non-Spark model for deeper analysis.
development
Prevents and handles GitHub API rate limits during Nix commands. Use when running nix flake, nix run, nix build, nix shell, or comma against GitHub-backed inputs.
tools
Resolves missing CLI tools. Use when a command is unavailable, a shell reports command not found, or a tool must be run without installing it globally.
development
Guides t-wada Red-Green-Refactor TDD. Use when implementing features, fixing bugs, or refactoring logic with strict test-first development.
documentation
Guides agent-skill creation and updates following Anthropic's SKILL.md best practices. Use when adding or editing skills under `agents/skills/`, writing SKILL.md frontmatter, references, or skill routing.