Agent skill · Code Review & Quality

codex-cli

Invoke OpenAI Codex CLI for second-opinion code review, approach validation, and task verification. Use when you need cross-AI validation, a fresh perspective on implementation, or automated code review. Takes 1-10 minutes per request.

majiayu000github.com/majiayu000GitHub ↗
claude-codecodexcan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill codex-cli-alexandrbasis-wythm-claude-workflo --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 7 KB
Bundled scripts: none
Allowed tools: -Bash-Read
Path: skills/ai-llm/codex-cli-alexandrbasis-wythm-claude-workflo/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Codex CLI Integration Skill This skill enables Claude Code to invoke OpenAI Codex CLI (gpt-5.3-codex with high reasoning) for one-shot code review, approach validation, and cross-AI verification. ## When to Use This Skill ### Ideal Use Cases 1. **Second Opinion / Cross-Validation** - Verify your implementation approach before writing code - Get a different AI perspective on your solution - Validate architectural decisions 2. **Code Review** - Review uncommitted changes before commit - Review changes against a base branch before PR - Security-focused code review 3. **Task Verification** - Confirm implementation meets requirements - Validate that refactoring preserved behavior - Check for missed edge cases 4. **Approach Validation** - Before starting complex implementation - When choosing between multiple approaches - For architectural decisions ### When NOT to Use - Simple, quick tasks (overhead not worth 1-10 min wait) - Tasks requiring interactive conversation/refinement - When immediate response is critical - Trivial changes (typos, formatting) ## Core Commands ### Approach Validation ```bash codex exec "Review this approach: [description]. Is it sound? What are the tradeoffs?"

What's inside
Steps it walks through
  1. When to Use This Skill
  2. Ideal Use Cases
  3. When NOT to Use
  4. Core Commands
  5. Approach Validation
  6. Code Review - Uncommitted Changes
  7. Code Review - Against Branch
  8. Custom Analysis
  9. Important Notes
  10. Output Handling Best Practice
  11. For codex exec (custom prompts)
  12. For codex exec review (no -o flag support)
  13. Workflow
  14. Critical: Provide File Paths in Prompts
Ships with 1 file
  • metadata.json
Commands it runs
codex exec review --uncommitted -m gpt-5.3-codex --full-auto > /tmp/codex-review.md 2>&1
codex exec review --base main -m gpt-5.3-codex --full-auto > /tmp/codex-review.md 2>&1
codex exec "[prompt]" -m gpt-5.3-codex --full-auto -o /tmp/codex-result.md > /dev/null 2>&1 && echo "Codex completed"
Run with output file + suppress verbose stdout
codex exec "prompt" -m gpt-5.3-codex --full-auto -o /tmp/codex-result.md > /dev/null 2>&1 && echo "Codex completed"
Redirect all output to file
codex exec "Review the task specification at tasks/task-2026-01-09-feature/tech-decomposition.md
Is the implementation plan complete? Any gaps or risks?" -m gpt-5.3-codex --full-auto -o /tmp/codex-result.md > /dev/null 2>&1
codex exec "Review implementation in these files:
Check against requirements in: tasks/task-2026-01-09-feature/tech-decomposition.md" -m gpt-5.3-codex --full-auto -o /tmp/codex-result.md > /dev/null 2>&1
More from claude-skill-registry
All skills →
About this skill
What does the codex-cli skill do?

Invoke OpenAI Codex CLI for second-opinion code review, approach validation, and task verification. Use when you need cross-AI validation, a fresh perspective on implementation, or automated code review. Takes 1-10 minutes per request.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill codex-cli-alexandrbasis-wythm-claude-workflo --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going