# Codex Code Reviewer

> Systematic code review workflow using zen mcp's codex tool. Use this skill when the user explicitly requests "use codex to check the code", "check if the recently generated code has any issues", or "check the code after each generation". The skill performs iterative review cycles - checking code quality, presenting issues to the user for approval, applying fixes, and re-checking until no issues r…

- **Type:** Skill
- **Install:** `agentstack add skill-vcnoc-claude-code-zen-mcp-skill-work-codex-code-reviewer`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [VCnoC](https://agentstack.voostack.com/s/vcnoc)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** Apache-2.0
- **Upstream author:** [VCnoC](https://github.com/VCnoC)
- **Source:** https://github.com/VCnoC/Claude-Code-Zen-mcp-Skill-Work/tree/main/skills/codex-code-reviewer

## Install

```sh
agentstack add skill-vcnoc-claude-code-zen-mcp-skill-work-codex-code-reviewer
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Codex Code Reviewer

## Overview

This skill provides a systematic, iterative code review workflow powered by zen mcp's codex tool. It automatically checks recently modified code files against project standards (CLAUDE.md requirements), presents identified issues to users for approval, applies fixes, and re-validates until code quality standards are met or the maximum iteration limit is reached.

**Operation Modes:**
- **Interactive Mode (Default)**: Present issues to user, wait for approval before applying fixes
- **Full Automation Mode**: Automatically select and apply all suggested fixes without user approval (activated when user initially requests "full automation" or "complete automation")

## When to Use This Skill

Trigger this skill when the user says:
- "Use codex to check the code"
- "Please help me check if the recently generated code has any issues"
- "Check the code after each generation"
- Similar requests for code quality validation using codex

## Workflow: Iterative Code Review Cycle

### Prerequisites

Before starting the review cycle:

1. ** Read Operation Mode from Context (automation_mode - READ FROM SSOT):**
   - automation_mode definition and constraints: See CLAUDE.md「📚 共享概念速查」
   - **This skill's role**: Skill Layer (read-only), read from context `[AUTOMATION_MODE: true/false]`, true → auto-fix / false → ask user

1a. **Read Coverage Target from Context (coverage_target - READ FROM SSOT):**
   - coverage_target definition and constraints: See CLAUDE.md「📚 共享概念速查」
   - **This skill's role**: Skill Layer (read-only), read from context `[COVERAGE_TARGET: X%]`, validate coverage (≥ target pass,  max_iterations → Exit loop, report remaining issues
- **User cancellation**: User declined fixes → Exit loop
- **Continue**: Issues remain and iterations = 2 AND no issues found in both passes → Exit loop, report success
- **Max iterations reached**: current_iteration > max_iterations → Exit loop, report remaining issues
- **User cancellation**: User declined fixes → Exit loop
- **Continue**: Issues remain OR minimum passes not met → Go to Step 1

### Termination and Reporting

When the cycle terminates, provide a final report:

```
Code Review Completion Report:

Review rounds: X / 5
Reviewed files: [list files]

Tools used:
- Round 1: mcp__zen__codereview (codex workflow validation)
- Round 2: mcp__zen__clink (codex CLI direct analysis)
- Round 3+: mcp__zen__clink (continued)

Final status:
- All issues fixed / Max reviews reached / User cancelled
- [Final Validation Mode] Completed minimum 2 passes / Did not meet minimum 2 pass requirement

Fix summary:
- Fixed issues: X
- Remaining issues: Y (if any)

Recommendations: [next steps]
```

## Code Quality Standards

This skill enforces standards defined in:
- **CLAUDE.md**: Global rules (G1-G11), phase-specific requirements (P1-P4), model development workflow
- **Project-specific**: PROJECTWIKI.md architecture decisions and conventions

Key quality dimensions checked:
1. **Code Quality**: Readability, maintainability, complexity
2. **Security**: Vulnerabilities, sensitive data handling
3. **Performance**: Efficiency, resource usage
4. **Architecture**: Adherence to documented design decisions
5. **Documentation**: Code comments, PROJECTWIKI.md alignment

**Test Coverage Standards (G9 Compliance):**
- coverage_target usage and thresholds: See CLAUDE.md「📚 共享概念速查」

See `references/quality_standards/README.md` for on-demand quality standards (load specific files as needed).

## Best Practices

### For Effective Reviews

1. **Scope Control**: Review recently modified files only (use git diff/status)
2. **Context Preservation**: Maintain continuation_id across review cycles for context continuity
3. **Incremental Fixes**: Address high-severity issues first, then iterate for lower-priority ones
4. **User Communication**: Always explain WHY an issue matters and HOW the fix improves code

### Error Handling

- **Tool Errors**: If `mcp__zen__codereview` fails, report to user and offer manual review
- **Ambiguous Issues**: When codex findings are unclear, seek user clarification before fixing
- **Conflicting Standards**: If global and project-specific CLAUDE.md conflict, prioritize global CLAUDE.md

## Resources

### references/quality_standards/README.md

Quality standards index and on-demand loading guide. Load this reference when:
- Need overview of available quality standards
- Detailed quality criteria are needed

Then load specific standard files as needed:
- `global_rules.md` - G1-G8 全局规则
- `core_principles.md` - 核心开发原则
- `p3_constraints_and_quality.md` - P3执行约束
- `commit_and_quality_gates.md` - Conventional Commits规范
- `error_handling_and_usage.md` - P4错误处理

Use grep patterns to search: `G1|G2|core principles|ethics|reproducible`

## Example Usage

### Example 1: Interactive Mode (Default)

**User**: "Use codex to check the code"

**Workflow**:
1. Identify files: src/features.py, src/model_training.py
2. Read context: `[AUTOMATION_MODE: false]` → Interactive mode
3. Round 1 (`mcp__zen__codereview`): Found 3 issues (1 critical, 1 medium, 1 low)
4. Ask user approval → User: "Yes"
5. Apply fixes
6. Round 2 (`mcp__zen__clink`): No new issues
7. **Result**: All issues fixed in 2/5 rounds

---

### Example 2: Full Automation Mode ⭐

**User Initial Request**: "Full automation, help me develop login functionality, automatically check quality after code completion"

**Main Router**: Detects "full automation" → Sets automation_mode = true

**After code generation, Main Claude invokes codex-code-reviewer with automation_mode = true:**

**Assistant**:
```
Alright, I will use codex to systematically review the just-generated code.

First, let me identify recently modified files...
[Running git status]

Found the following modified files:
- src/auth/login.py
- src/auth/session.py
- tests/test_login.py

Reading context: [AUTOMATION_MODE: true]
Mode: Full automation review (automatically select and apply fixes)

Starting round 1 review...
[Calling mcp__zen__codereview]

Review results:
Found 5 issues:
[Critical] src/auth/login.py:45 - SQL injection risk (critical)
[Critical] src/auth/session.py:23 - Plaintext password storage (critical)
[Medium] src/auth/login.py:78 - Missing exception handling (medium)
[Medium] src/auth/session.py:56 - Performance issue: N+1 query (medium)
[Low] tests/test_login.py:12 - Non-standard test naming (low)

[Full Automation Mode] Auto-decision + fixes applied:

[Automated Fix Record] Fixed: 2 critical, 2 medium, 1 low
1. SQL injection (critical) → Fixed with parameterized queries
2. Plaintext password (critical) → Fixed with bcrypt encryption
3. Exception handling (medium) → Fixed with try-except blocks
4. N+1 query (medium) → Fixed with select_related optimization
5. Test naming (low) → Fixed by renaming to standard convention

Fixes completed. Starting round 2 review...
[Calling mcp__zen__clink with codex CLI]

Review results: No new issues found

Code review complete!
Review rounds: 2 / 5
Tools used:
- Round 1: mcp__zen__codereview
- Round 2: mcp__zen__clink (codex CLI)
Full automation mode: Auto-fixed 5 issues, skipped 0 issues
All issues successfully fixed without user intervention.
```

**Key Differences:** No user approval, auto-decision by severity/safety, transparent logging with rationale, same quality standards

---

### Example 3: Final Validation Mode (Project Completion/Final Quality Verification) ⭐⭐

**User**: "Project is complete, please perform final quality verification"

**Workflow**:
1. Detect: Project completion/final verification → Enable Final Validation Mode (min 2 rounds)
2. Identify files: 5 core files (src + tests)
3. Round 1 (`mcp__zen__codereview`): Found 2 issues (1 medium, 1 low)
4. Ask user approval → User: "Yes" → Apply fixes
5. Round 2 (`mcp__zen__clink` with codex CLI): No new issues
6. **Result**: All issues fixed, minimum 2-round requirement met, quality verification passed

**Key Features:** Mandatory 2+ passes (codereview + clink), early exit prevention, comprehensive validation before release

---

## Notes

- Dual-tool approach: Iteration 1 uses `mcp__zen__codereview`, iteration 2+ uses `mcp__zen__clink` with codex CLI
- Max 5 iterations, CLAUDE.md workflow compatible (P3/P4), three modes: Interactive (default) / Full Automation / Final Validation (2+ passes)
- **automation_mode & auto_log (READ FROM SSOT)**:
  - Definitions and constraints: See CLAUDE.md「📚 共享概念速查」
  - This skill: Skill Layer (read-only), outputs `[Automated Decision Record]` fragments when automation_mode=true
- Final validation mode activated when user mentions "project completion" / "final verification" / "final quality validation"

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [VCnoC](https://github.com/VCnoC)
- **Source:** [VCnoC/Claude-Code-Zen-mcp-Skill-Work](https://github.com/VCnoC/Claude-Code-Zen-mcp-Skill-Work)
- **License:** Apache-2.0

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-vcnoc-claude-code-zen-mcp-skill-work-codex-code-reviewer
- Seller: https://agentstack.voostack.com/s/vcnoc
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
