OpenAI Codex Plugin for Claude Code — Setup, Commands, and Who Benefits
openai/codex-plugin-cc lets Claude Code call Codex for reviews and rescue tasks. Not new — viral Jul 12. explainx.ai covers install, slash commands, one-way integration, and Fable + Codex stacks.
Two frontier coding agents. One terminal. OpenAI built the bridge months ago — X just noticed.
On July 12, 2026, Shubham Saboo (@Saboo_Shubham_) posted that OpenAI dropped a Codex plugin for Claude Code — use Codex inside Claude for code reviews or delegated tasks. The tweet hit 63k+ views and linked openai/codex-plugin-cc.
Replies were immediate: "4 months ago… stop clickbaiting.""Fable 5 + gpt-5.5 medium is pretty good.""Two competing products are now teammates — who benefits?"
explainx.ai's read: not a launch, but the cleanest official pattern for the Codex vs Claude Code split developers already run — plan in Claude, execute or review in Codex — without bash duct tape.
explainx.ai standard: treat viral reposts as discovery events, not ship dates. The plugin matters because it is official, maintained, and documented — not because July 12 was day zero.
ChatGPT subscription (incl. Free) or OpenAI API key
Node.js ≥ 18.18
Global Codex CLI: npm install -g @openai/codex
Auth: !codex login if /codex:setup fails
After install you should see slash commands plus the codex:codex-rescue subagent in /agents.
Config inheritance: plugin reads ~/.codex/config.toml and trusted project .codex/config.toml — same models and reasoning effort as standalone Codex. Example project override:
toml
model = "gpt-5.4-mini"model_reasoning_effort = "high"
Typical workflows
1. Ship gate — dual review
snippet
# Claude implements with Fable 5
/codex:review --base main
/codex:adversarial-review --base main challenge retry and cache invalidation assumptions
/codex:rescue --model gpt-5.4-mini --effort medium investigate the flaky integration test
/codex:rescue --background fix the failing test with the smallest safe patch
spark maps to gpt-5.3-codex-spark for fast passes per README.
3. Session transfer — leave Claude, continue in Codex App/TUI
snippet
/codex:transfer
# → prints codex resume <session-id>
Uses Codex's external-agent session importer — same rules as importing Claude history in the Codex desktop app.
"you can simply ask Claude to call codex, grok and gemini as long as they are installed and authenticated… But when I try to call claude from codex, the tool call gets blocked hard."
explainx.ai read:
Direction
Status
Claude Code → Codex
Official plugin + CLI delegation
Claude Code → Grok/Gemini CLI
Community pattern if binaries exist
Codex → Claude Code
Blocked / unsupported
Anthropic and OpenAI both protect their harness — the plugin is distribution for Codex usage inside Anthropic's IDE, not neutral orchestration. ChatGPT Work vs Codex already showed OpenAI merging surfaces; this is the cross-vendor version of "stay in one UI, burn two quotas."
Who benefits — "two competitors as teammates"
@AgentOrToy asked who wins when Fable and Codex share a session.
Party
Benefit
Builder
One workflow — plan/review split without repo hopping
OpenAI
Codex invocations from Claude-heavy users · GPT-5.6 Sol rescue tasks
Anthropic
Claude Code stays default shell · Fable still orchestrates
Both
Dual subscriptions normalized — matches "subscribe to both at ~$20" era
CodeBucks reply: "Fable 5 + gpt 5.5 medium is pretty good combination" — cheap Codex passes under Fable planning.
Risk:limit whiplash on both sides if you chain background rescues + review gates during promo weeks.
Review gate — read the warning
snippet
/codex:setup --enable-review-gate
When enabled, a Stop hook runs targeted Codex review on Claude's response. Issues block stop until fixed — can loop Claude/Codex until quotas empty.
OpenAI README:
"The review gate can create a long-running Claude/Codex loop and may drain usage limits quickly."
Use only when actively monitoring — not overnight on Fable July 19 cliff anxiety runs.
vs rolling your own CLI calls
Approach
Pros
Cons
codex-plugin-cc
Official · session transfer · background jobs · config inherit
Separate runtime? No — same machine, same checkout, same config.toml.
API key / custom base URL? Yes — set openai_base_url in Codex config.
Resume in Codex app?codex resume <session-id> from /codex:result.
Summary
openai/codex-plugin-cc is OpenAI's official Claude Code marketplace plugin — not new in July 2026, but the right integration if you already run Claude Code + Codex as a dual-agent stack. Install via marketplace commands, use /codex:review and /codex:rescue for read-only and implementation delegation, /codex:transfer to hop into Codex natively. Claude→Codex works; Codex→Claude mostly doesn't.Fable 5 + gpt-5.5 medium is the community sweet spot. Ignore "just dropped" hype — do enable the plugin if you pay for both harnesses anyway.
Plugin commands and model aliases follow the GitHub README as of July 13, 2026. Verify /plugin marketplace availability in your Claude Code build before production rollout.