TopGit
GitHub Repo Review

OpenAI Codex Plugin for Claude Code: Review & Delegate

openai/codex-plugin-cc
OTopGit review image for openai/codex-plugin-cc
Review by Topgit.dev for openai/codex-plugin-cc, with GitHub repository stats and README context.
Quick verdict

Reach for this if you work inside Claude Code and want a second opinion from Codex on your changes, or to pass a stuck task to a different model without leaving the session. Skip it if you don't have a ChatGPT or OpenAI API sign-in, or you'd rather just run Codex directly โ€” this is a convenience wrapper on top of the Codex CLI, not a new engine.

Stars
โ˜… 33.4k
Forks
โ‘‚ 2.3k
Contributors
๐Ÿ‘ฅ 13
Language
JavaScript
License
Apache-2.0
Topic
โ€”
Updated
Jul 2026
Homepage
โ€”

Getting a Second Opinion Without Leaving Claude Code

If your daily driver is Claude Code but you also want Codex's take on a change, you normally have to jump to another terminal, re-explain the context, and manage two tools by hand. That context-switch is enough friction that most people just skip the second review. This plugin exists to keep the Codex review and hand-off inside the Claude Code workflow you already have.

OpenAI's Own Bridge Between Codex and Claude Code

The OpenAI Codex plugin for Claude Code (JavaScript, Apache-2.0), published by OpenAI, wires Codex into Claude Code via slash commands: `/codex:review` runs a read-only Codex review of your changes, `/codex:adversarial-review` challenges your design, and `/codex:rescue` delegates a task to Codex via a subagent. It calls the Codex app server through the global `codex` binary, using your existing sign-in and config rather than a separate runtime.

/codex:review, /codex:rescue, and /codex:transfer

  • โœ“`/codex:review` โ€” a read-only Codex review of your uncommitted changes, or your branch against a base ref with `--base <ref>`
  • โœ“`/codex:adversarial-review` โ€” a steerable review that questions the design, tradeoffs, and hidden assumptions, and accepts custom focus text
  • โœ“`/codex:rescue` โ€” delegates a task (investigate a bug, try a fix) to Codex via the `codex:codex-rescue` subagent, with `--model`, `--effort`, `--resume`, and `--fresh`
  • โœ“`/codex:transfer` โ€” turns the current Claude Code session into a persistent Codex thread and prints a `codex resume <session-id>` command to continue it in Codex
  • โœ“Background jobs: `--background` plus `/codex:status`, `/codex:result`, and `/codex:cancel` to run long reviews without blocking
  • โœ“Optional review gate via a `Stop` hook that runs a Codex review before Claude finishes and blocks if it finds issues
  • โœ“Reuses your local Codex CLI, authentication, and `config.toml`, so no separate Codex account is needed if you're already signed in

An Official OpenAI Plugin at 27.5k Stars

It's an official OpenAI project that connects the two coding tools a lot of developers already juggle โ€” Claude Code and Codex โ€” instead of asking them to pick one. The pitch is narrow and practical: review your diff with a second model, or delegate work to Codex, from the prompt you're already in.

How this repository's GitHub stars have grown over time. Source: star-history.com.View the star history โ†—

Second Reviews, Adversarial Checks, and Delegated Bugs

  • โ€ขGetting a second-model code review of your diff before you open a pull request
  • โ€ขPressure-testing a design decision with an adversarial review that challenges the approach, not just the syntax
  • โ€ขHanding a stuck bug or refactor to Codex to investigate in the background while you keep working
  • โ€ขContinuing a debugging conversation you started in Claude Code directly inside Codex via `/codex:transfer`

Adding the Marketplace and Running /codex:setup

Install from inside Claude Code. Add the marketplace with `/plugin marketplace add openai/codex-plugin-cc`, install with `/plugin install codex@openai-codex`, then run `/reload-plugins`. Finish with `/codex:setup`, which checks whether Codex is ready and can offer to install it (via `npm install -g @openai/codex`) if npm is available. Requirements per the README: Node.js 18.18 or later, and either a ChatGPT subscription (Free included) or an OpenAI API key; usage counts against your Codex limits. If Codex isn't logged in, run `!codex login`.

Reviewing a Diff or Rescuing a Stuck Task

Once installed, drive it with slash commands. `/codex:review` reviews your current work; `/codex:review --base main` reviews your branch against main; add `--background` for long multi-file reviews and check on them with `/codex:status` and `/codex:result`. Use `/codex:adversarial-review` when you want the review to challenge the direction. Delegate work with `/codex:rescue investigate why the tests started failing`. Model and reasoning-effort defaults can be set in your user- or project-level `.codex/config.toml`.

Reuses the Codex Account You Already Have

  • โœ“Keeps the Codex review and delegation inside Claude Code, so you skip the terminal-switching and re-explaining
  • โœ“Reuses your existing local Codex install, sign-in, and config โ€” no second account or runtime if you already use Codex
  • โœ“Background jobs mean a slow multi-file review doesn't freeze your session
  • โœ“Official OpenAI project under Apache-2.0, so you can read exactly what the commands do

Still Just a Wrapper Around the Codex CLI

  • โ–ณIt's a convenience wrapper, not a new model โ€” everything routes through the Codex CLI, so you get nothing you couldn't get by running Codex directly
  • โ–ณHard dependency on Codex: you need the `codex` binary installed and a ChatGPT or API sign-in, and every run counts against your Codex usage limits
  • โ–ณRequires Node.js 18.18 or later
  • โ–ณThe README warns the optional review gate can spin up a long Claude/Codex loop that drains usage limits, so it says to only enable it while actively watching the session
  • โ–ณ`/codex:transfer` only works on sessions stored under `~/.claude/projects` and needs a recent Codex version that supports session import
View on GitHub โ†—

Running Codex Directly, cmux, continue, Aider

Running Codex directly via the Codex CLI (`@openai/codex`) โ€” the same engine this plugin wraps, without the Claude Code integrationcmux โ€” runs and manages multiple coding agents in parallel rather than calling one from inside another โ†—continue โ€” an open-source AI code assistant that lives in your IDE across models โ†—Aider โ€” a terminal-based AI pair programmer that works with OpenAI and other models

Who Gets Real Value From This Plugin

Developers whose main workflow is Claude Code and who already use, or are willing to sign into, Codex. If you want a second-model review of your diff or to delegate a task without leaving Claude Code, it removes real friction. If you don't have a Codex sign-in, or you already run Codex directly and don't mind the extra terminal, there's little reason to add it.

codex-plugin-cc Questions, Answered

What is the OpenAI Codex plugin for Claude Code?

It's an official OpenAI plugin (JavaScript, Apache-2.0) that adds `/codex:*` slash commands to Claude Code so you can run Codex code reviews and delegate tasks to Codex without leaving your Claude Code session.

Do I need a separate Codex account to use it?

No, if you're already signed into Codex on the machine โ€” the plugin uses your local Codex CLI authentication. If you've only used Claude Code, you'll need to sign into Codex with a ChatGPT account or an API key first.

Does the plugin run a separate Codex runtime?

No. The README says it delegates through your local Codex CLI and Codex app server on the same machine, using the same install, authentication, and repository checkout you'd use running Codex directly.

What's the difference between /codex:review and /codex:adversarial-review?

`/codex:review` is a read-only review of your current changes with no custom focus. `/codex:adversarial-review` is steerable: it challenges the chosen design and tradeoffs and accepts extra focus text, for example to pressure-test auth, rollback, or race conditions.

Is it free to use?

The plugin itself is open source under Apache-2.0. Running it needs Codex access, which the README notes is available with a ChatGPT subscription (Free included) or an OpenAI API key, and usage contributes to your Codex limits.

Source & attribution

Based on the official openai/codex-plugin-cc GitHub repository, including its README and project metadata.

GitHub data ยท last synced Jul 11, 2026Reviewed by Henry
โ† Back to TopGit

Want a second opinion on codex-plugin-cc?

Ask an AI that can read this page โ€” one click and you get its take on codex-plugin-cc.

GitHub