Codex Review Workflow Skill banner
win4r win4r

Codex Review Workflow Skill

Code Quality community

Description

Automated code review workflow skill for Claude Code that integrates with OpenAI Codex CLI

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Codex Review Workflow Skill

An automated code review workflow skill for [Claude Code](https://claude.com/claude-code) that integrates with OpenAI Codex CLI. This skill implements an iterative fix-and-review cycle that automatically reviews code, identifies issues, applies fixes, and re-reviews until the code passes validation or reaches the iteration limit.

Features

  • Automated Review Cycle - Integrates seamlessly with OpenAI Codex CLI
  • Intelligent Issue Detection - Identifies bugs, security vulnerabilities, and best practice violations
  • Iterative Fix & Review - Automatically fixes issues and re-reviews until code passes
  • Smart Format Parsing - Handles 12+ different Codex output format variations
  • Progress Tracking - Uses TodoWrite tool for user visibility
  • Configurable Limits - Default 2 review cycles (initial + 1 re-review)

Validation Results

This skill has been tested and validated through 8 complete test executions:

  • 48 total issues found and documented
  • 44 issues successfully fixed (91.7% success rate)
  • 12 unique Codex output formats identified and handled

Requirements

Installation

Option 1: Download Release (Recommended)

  1. Download the latest codex-review-workflow.zip from the Releases page
  2. Extract to your skills directory:
    unzip codex-review-workflow.zip -d ~/.claude/skills/

Option 2: Manual Installation

  1. Clone this repository:

    git clone https://github.com/charlesqin/codex-review-workflow-skill.git
    cd codex-review-workflow-skill
  2. Copy to your Claude Code skills directory:

    cp -r codex-review-workflow ~/.claude/skills/

Option 3: Install from Source