OpenAI shipped a Codex plugin for Claude Code that delegates tasks and reviews through the Codex app server with ChatGPT subscriptions. Teams can run Codex alongside Claude Code in the same harness, including parallel background tasks and review workflows.

/codex:review, /codex:adversarial-review, plus /codex:rescue, /codex:status, /codex:result, and /codex:cancel for background job control.The new plugin brings Codex directly into Claude Code as a delegated worker and reviewer. In the announcement, Daniel Kundel says users can "trigger Codex from Claude Code" to "delegate tasks to Codex" or "have Codex review your changes," and the linked GitHub repo positions it for teams that want Codex inside an existing Claude Code workflow.
The concrete surface area is broader than a single review command. As shown in the README screenshot, the plugin exposes a normal read-only /codex:review, a steerable /codex:adversarial-review, and a small job-control set — /codex:rescue, /codex:status, /codex:result, and /codex:cancel — for dispatching and managing background work. The repo summary in the linked overview also notes setup requirements: Node.js 18.18+ plus either a ChatGPT subscription or an OpenAI API key.
The key implementation detail is that this plugin rides on the Codex app server, not a separate MCP integration path. In the architecture thread, Kundel says it is "built on top of the Codex app server" and therefore uses "the same open-source agent harness as the rest of Codex," which is what enables parallel background tasks, shared models, and the same Codex review flow inside Claude Code.
That app-server choice stood out to practitioners because it keeps Claude Code as the front end while Codex handles orchestration behind the scenes. Kevin Kern writes in his post that the plugin "doesn't use the codex mcp server" and instead wraps the app server; the OCR text attached to the thread image describes a "forwarder-not-orchestrator pattern," "background/foreground modes," and scope controls like auto|working-tree|branch. Early usage ideas are already appearing around those hooks: one practitioner suggests wiring stop hooks to automatically ask for a Codex review, and Kundel's reply frames Claude Code as one of several IDE surfaces where the same Codex backend should work.
I built a new plugin! You can now trigger Codex from Claude Code! Use the Codex plugin for Claude Code to delegate tasks to Codex or have Codex review your changes using your ChatGPT subscription. Start by installing the plugin: github.com/openai/codex-p…
OpenAI Codex plugin for Claude Code github.com/openai/codex-p…
We love an open ecosystem! The Codex plugin is built on top of the Codex app server so it uses the same open-source agent harness as the rest of Codex. It means you can run multiple Codex tasks in parallel in the background, use the same models and the same Codex code review Show more
mh interesting. the codex plugin for claude code doesn't use the codex mcp server. codex team wrapped the codex app-server instead. building that app server infra open sourcing it was one of their smartest decisions.
Starting today you can use Codex in Claude Code 👀 /plugin marketplace add openai/codex-plugin-cc Try it out today with: /codex:review for a normal read-only Codex review /codex:adversarial-review for a steerable challenge review /codex:rescue to let codex rescue your code