codex-agent

Solid

MANDATORY for code review - must use Codex CLI for all code reviews, then apply fixes based on Codex feedback. Also use for cross-verification, debugging, and getting alternative implementations.

AI & Automation 140 stars 15 forks Updated today MIT

Install

View on GitHub

Quality Score: 90/100

Stars 20%
72
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Codex Agent Collaboration Skill This skill enables Claude Code to collaborate with OpenAI's Codex CLI agent. ## MANDATORY: Code Review Workflow **IMPORTANT**: When performing code review, you MUST follow this workflow: ### Step 1: Call Codex for Review ```bash codex exec -C <project_path> -s read-only -o /tmp/codex-review.md \ "Review the code in <file_or_directory>. Check for: - Security vulnerabilities - Performance issues - Code quality and best practices - Potential bugs and edge cases - Naming and readability Provide specific, actionable feedback with file paths and line numbers." ``` ### Step 2: Read Codex Feedback ```bash cat /tmp/codex-review.md ``` ### Step 3: Apply Fixes Based on Codex Feedback For each issue identified by Codex: 1. Read the relevant file 2. Apply the fix using Edit tool 3. Verify the fix addresses Codex's concern ### Step 4: Re-verify with Codex (Optional) ```bash codex exec -C <project_path> -s read-only \ "Verify the fixes applied to <files>. Confirm issues are resolved." ``` ## Workflow Examples ### Example 1: Review and Fix a Single File ```bash # Step 1: Get Codex review codex exec -C /project -s read-only -o /tmp/codex-review.md \ "Review src/auth/login.ts for security vulnerabilities and code quality issues. Provide specific line numbers and fixes." # Step 2: Read the feedback cat /tmp/codex-review.md ``` Then Claude reads the feedback, applies fixes with Edit tool, and optionally re-verifies. ### E...

Details

Author
majiayu000
Repository
majiayu000/claude-arsenal
Created
5 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category