
Codex Plugin Cc
- 800 installs
- 66 repo stars
- Updated July 9, 2026
- aradotso/trending-skills
codex-plugin-cc is a Claude Code plugin skill that lets developers run OpenAI Codex code reviews and delegate background investigation tasks directly from an active Claude Code session.
About
codex-plugin-cc is an ara.so Daily 2026 Skills entry that connects OpenAI Codex to Claude Code for code reviews, adversarial reviews, bug investigations, and background delegated tasks. Trigger phrases include review my code with Codex, delegate a task to Codex, and install codex plugin claude code, plus commands to check background Codex job status. Developers use codex-plugin-cc when they want a second model reviewing or exploring code without leaving Claude Code. The skill focuses on plugin setup, review invocation, and monitoring delegated jobs rather than replacing either agent's native editing workflow.
- Run read-only Codex code reviews on uncommitted changes or branch diffs with /codex:review
- Perform steerable adversarial reviews that challenge design decisions, tradeoffs, and assumptions with /codex:adversaria
- Delegate bug investigation or fix tasks to Codex as a background subagent using /codex:rescue
- Manage background jobs with /codex:status, /codex:result, /codex:cancel commands
- Includes /codex:setup to verify and configure Codex authentication
Codex Plugin Cc by the numbers
- 800 all-time installs (skills.sh)
- +6 installs in the week ending Jul 27, 2026 (Skillselion tracking)
- Ranked #1,307 of 16,659 AI & Agent Building skills by installs in the Skillselion catalog
- Security screen: LOW risk (skills.sh audit)
- Data as of Jul 27, 2026 (Skillselion catalog sync)
npx skills add https://github.com/aradotso/trending-skills --skill codex-plugin-ccAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 800 |
|---|---|
| repo stars | ★ 66 |
| Security audit | 3 / 3 scanners passed |
| Last updated | July 9, 2026 |
| Repository | aradotso/trending-skills ↗ |
How do you run Codex reviews in Claude Code?
Run OpenAI Codex code reviews and delegate background tasks directly from inside a Claude Code session.
Who is it for?
Claude Code users who want OpenAI Codex adversarial reviews or parallel background investigations without switching terminals or editors.
Skip if: Developers not using Claude Code or teams that only need a single-model inline edit without delegated cross-agent reviews.
When should I use this skill?
The user asks to review code with Codex, delegate a task to Codex, run an adversarial review, investigate a bug via Codex, or install the Codex plugin for Claude Code.
What you get
Codex plugin setup, completed code review output, and status for background delegated Codex jobs.
- Codex review report
- Background job status output
Files
Codex Plugin for Claude Code
Skill by ara.so — Daily 2026 Skills collection.
A Claude Code plugin that lets you run OpenAI Codex code reviews and delegate background tasks to Codex directly from your Claude Code session. Use it for read-only code reviews, adversarial design challenges, and handing off investigative or fix tasks to Codex as a subagent.
---
What It Does
/codex:review— Standard read-only Codex code review of uncommitted changes or a branch diff/codex:adversarial-review— Steerable review that challenges design decisions, tradeoffs, and assumptions/codex:rescue— Delegate a task (bug investigation, fix, etc.) to Codex as a background subagent/codex:status— Check progress of background Codex jobs/codex:result— Retrieve output from a finished job (includes Codex session ID forcodex resume)/codex:cancel— Cancel an active background job/codex:setup— Verify Codex is installed and authenticated; optionally enable/disable the review gate
---
Requirements
- Node.js 18.18 or later
- A ChatGPT subscription (Free tier works) or an OpenAI API key
- Claude Code with plugin support
---
Installation
1. Add the marketplace and install the plugin
/plugin marketplace add openai/codex-plugin-cc
/plugin install codex@openai-codex
/reload-plugins2. Verify setup
/codex:setupIf Codex CLI is missing, /codex:setup can install it for you via npm, or install manually:
npm install -g @openai/codex3. Authenticate with Codex
!codex loginSupports ChatGPT account login or API key. Your existing Codex CLI authentication is reused automatically if already logged in.
---
Key Commands
/codex:review
Runs a standard read-only Codex review on your current work.
# Review uncommitted changes
/codex:review
# Review diff against a base branch
/codex:review --base main
# Run in the background (recommended for multi-file changes)
/codex:review --background
# Run and wait inline
/codex:review --wait/codex:adversarial-review
Challenges implementation decisions, tradeoffs, and hidden assumptions. Accepts optional free-text focus after flags.
# Basic adversarial review
/codex:adversarial-review
# Target a branch diff with a specific focus
/codex:adversarial-review --base main challenge whether this caching approach was correct
# Run in background, focus on race conditions
/codex:adversarial-review --background look for race conditions and question the retry design/codex:rescue
Hands off a task to Codex via the codex:codex-rescue subagent.
# Investigate a failing test
/codex:rescue investigate why the tests started failing
# Apply a minimal fix
/codex:rescue fix the failing test with the smallest safe patch
# Resume the most recent Codex session for this repo
/codex:rescue --resume apply the top fix from the last run
# Start fresh (ignore previous session)
/codex:rescue --fresh investigate the regression
# Use a specific model and effort level
/codex:rescue --model gpt-5.4-mini --effort medium investigate the flaky integration test
# Use the faster "spark" model (maps to gpt-5.3-codex-spark)
/codex:rescue --model spark fix the issue quickly
# Run in the background
/codex:rescue --background investigate why the build is failing in CIYou can also trigger rescue via natural language to Claude:
Ask Codex to redesign the database connection to be more resilient./codex:status
# List all running and recent jobs for this repo
/codex:status
# Check a specific job
/codex:status task-abc123/codex:result
# Get result of the most recent finished job
/codex:result
# Get result for a specific job
/codex:result task-abc123Output includes a Codex session ID. Resume that session directly in Codex:
codex resume <session-id>/codex:cancel
# Cancel the most recent active job
/codex:cancel
# Cancel a specific job
/codex:cancel task-abc123/codex:setup — Review Gate
# Enable the stop hook review gate
/codex:setup --enable-review-gate
# Disable it
/codex:setup --disable-review-gateWarning: The review gate runs a Codex review on every Claude response and blocks the stop if issues are found. This can trigger long Claude/Codex loops and drain usage limits. Only enable it when actively monitoring the session.
---
Configuration
The plugin uses the same config.toml as the Codex CLI. Configuration is layered:
| Location | Scope |
|---|---|
~/.codex/config.toml | User-level defaults |
.codex/config.toml (project root) | Project-level overrides (requires trusted project) |
Example: Set default model and effort for a project
# .codex/config.toml
model = "gpt-5.4-mini"
model_reasoning_effort = "xhigh"Example: Point to a custom OpenAI-compatible endpoint
# ~/.codex/config.toml
openai_base_url = "https://your-custom-endpoint.example.com/v1"API keys and authentication are managed via codex login — do not hardcode keys in config files. The CLI reads from the authenticated session or from the OPENAI_API_KEY environment variable.
---
Common Patterns
Review before shipping
/codex:review --base mainStart a long-running review, check back later
/codex:adversarial-review --background look for auth and data-loss risks
/codex:status
/codex:resultDelegate a bug investigation and resume in Codex
/codex:rescue --background investigate why the integration test is flaky
# ... later ...
/codex:result
# Copy session ID from output, then:
codex resume <session-id>Iterative rescue workflow
# First pass
/codex:rescue investigate the failing build
# Apply what Codex found, continuing the same thread
/codex:rescue --resume apply the recommended fix from the last run
# Start completely fresh
/codex:rescue --fresh re-investigate with a clean slateUse Claude to delegate naturally
Ask Codex to refactor the authentication module to remove the global state.Claude will invoke the codex:codex-rescue subagent automatically.
---
Troubleshooting
/codex:setup says Codex is not installed
npm install -g @openai/codex
# or let /codex:setup install it for youCodex is installed but not authenticated
!codex loginSupports ChatGPT account or API key. If using an API key directly:
export OPENAI_API_KEY=your-key-hereBackground job seems stuck
/codex:status
/codex:cancel task-abc123Plugin commands not appearing after install
/reload-pluginsProject-level config not being picked up
Project config in .codex/config.toml only loads when the project is trusted by Codex. Run codex directly in the project directory to trust it, or check the Codex advanced config docs.
Review gate creating runaway loops
Disable it immediately:
/codex:setup --disable-review-gate---
How It Works Internally
- The plugin wraps the local
codexbinary and the Codex app server - All jobs run in your local environment against your local repository checkout
- Authentication, config, and model settings come from your existing Codex CLI setup
- Background jobs are tracked per-repository and can be resumed in Codex directly via session IDs
- The
codex:codex-rescuesubagent is registered in/agentsand can be invoked by Claude automatically when you ask it to delegate work to Codex
Related skills
FAQ
What can codex-plugin-cc do inside Claude Code?
codex-plugin-cc lets Claude Code users run OpenAI Codex code reviews, adversarial reviews, bug investigations, and delegated background tasks, then check the status of those background Codex jobs from the same session.
Which phrases trigger codex-plugin-cc?
codex-plugin-cc activates on phrases such as review my code with Codex, run a Codex review, delegate a task to Codex, use Codex to investigate a bug, and install codex plugin claude code.
Is Codex Plugin Cc safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.