explainx.ainewsletter3.5k
TrendingNewsPathwaysSkills
Pricing
explainx.ai

Upskill in AI — 16 free pathways, live workshops & bootcamps, and 50+ courses from practitioners. Plus the skills, tools, and MCP servers to practice on.

follow us

corporate training

support@explainx.ai

get started

Find your pathTake Free Evaluation

learn

pathways — start freeworkshopsbootcampscoursescertificationsmock testsexplainx universitycorporate traininglearn skills & mcp

discover

skillsmcp serversexplainx mcptoolsagentsllmsdesignsdictionaryagi trackerranks

company

aboutvisionmissionteaminstructorscommunityhackathonscareers

content

daily AI newsstate of AI — live resultsblogreleasespromptsgeneratorsresource libraryfor LLMsexplainx.ai kids

solutions

all solutionsdeveloper upskillingmarketing upskillingproduct manager upskillingleadership upskilling

newsletter · weekly

Get AI news, tools, and insights in your inbox.

supportcontactprivacytermsdata rightshow we create contentsubmission guidelines

© 2026 AISOLO Technologies Pvt Ltd

On this page

  • TL;DR — what people are asking
  • Not "just dropped" — timeline vs hype
  • What you get — commands at a glance
  • Install — copy-paste sequence
  • Typical workflows
  • One-way bridge — why Codex→Claude is hard
  • Who benefits — "two competitors as teammates"
  • Review gate — read the warning
  • vs rolling your own CLI calls
  • FAQ from GitHub — quick answers
  • Summary
  • Related on explainx.ai
← Back to blog

explainx / blog

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.

Jul 13, 2026·7 min read·Yash Thakker
CodexClaude CodeOpenAIAnthropicDeveloper ToolsAI Plugins
go deep
OpenAI Codex Plugin for Claude Code — Setup, Commands, and Who Benefits

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.

Weekly digest3.5k readers

Catch up on AI

Curated AI updates on agents, skills, and MCP — delivered to your inbox. Unsubscribe anytime.

TL;DR — what people are asking

table · 2 cols
QuestionAnswer
New?No — public repo, 28.2k★, v1.0.6 (Jul 8, 2026)
What it doesClaude Code → local Codex CLI for review + rescue
InstallMarketplace + /codex:setup — needs Node 18.18+, codex login
Key commands/codex:review, /codex:adversarial-review, /codex:rescue, /codex:transfer
Reverse (Codex→Claude)?Often blocked — one-way bridge
Best stack?Fable 5 orchestrates · Codex/gpt-5.5 for cheap passes
QuotaBoth Claude and Codex limits can burn

OpenAI Codex plugin for Claude Code — a solid one-way bridge from one terminal to another, with the reverse path broken

Not "just dropped" — timeline vs hype

table · 2 cols
DateEvent
Months prioropenai/codex-plugin-cc public · devs using /codex:review in production
Jul 8, 2026v1.0.6 release on GitHub
Jul 12, 2026@Saboo_Shubham_ viral repost · "just dropped" framing
Pushback@michabbb — "4 months ago… embarrassing clickbait"

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.


What you get — commands at a glance

From the official README:

table · 3 cols
CommandModeUse when
/codex:reviewRead-onlyUncommitted diff or --base main branch review
/codex:adversarial-reviewRead-only, steerableChallenge design — auth, races, rollback, caching
/codex:rescueCan editDebug, fix tests, continue prior Codex thread
/codex:transferHandoffExport Claude session → codex resume <id>
/codex:statusMonitorBackground job progress
/codex:resultOutputFinal Codex output + session ID
/codex:cancelControlKill background job
/codex:setupConfigAuth check · optional review gate

Background pattern (recommended for heavy reviews):

snippet
/codex:review --background
/codex:status
/codex:result

Natural language also works: "Ask Codex to redesign the database connection to be more resilient."


Install — copy-paste sequence

In Claude Code:

snippet
/plugin marketplace add openai/codex-plugin-cc
/plugin install codex@openai-codex
/reload-plugins
/codex:setup

Requirements:

  • 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

Matches Gokul Rajaram's split: Claude for planning, Codex for review and execution.

2. Rescue lane — cheap second implementer

snippet
/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.

4. Theo-style routing in CLAUDE.md

explainx.ai already documents this in what is CLAUDE.md:

  • Fable 5 / Opus — taste, plans, user-facing design
  • gpt-5.5 via plugin — bulk implementation, migrations, data work
  • /codex:review — non-destructive quality pass
  • /codex:adversarial-review — skeptical design review with custom focus text

No custom bash wrappers — native slash commands inherit Codex config.


One-way bridge — why Codex→Claude is hard

@iret77 (Jul 12 reply):

"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:

table · 2 cols
DirectionStatus
Claude Code → CodexOfficial plugin + CLI delegation
Claude Code → Grok/Gemini CLICommunity pattern if binaries exist
Codex → Claude CodeBlocked / 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.

table · 2 cols
PartyBenefit
BuilderOne workflow — plan/review split without repo hopping
OpenAICodex invocations from Claude-heavy users · GPT-5.6 Sol rescue tasks
AnthropicClaude Code stays default shell · Fable still orchestrates
BothDual 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

table · 3 cols
ApproachProsCons
codex-plugin-ccOfficial · session transfer · background jobs · config inheritTwo billing pools
Manual !codexFlexibleNo /codex:status · fragile prompts
claudex / proxy routingOpenAI models as Claude APIDifferent architecture · ToS gray areas
Loop engineering only ClaudeSingle vendor simplicityMiss Codex computer use / review strengths

For enterprise, pair plugin use with DCG destructive-command guards on whichever agent touches prod.


FAQ from GitHub — quick answers

Same Codex account? Yes — local CLI auth shared.

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.


Not to be confused with: Agent Plugins, the cross-client open standard OpenAI announced with AWS, Cursor, GitHub, VS Code, and Vercel on August 6, 2026. That standard packages Agent Skills with MCP server configs for portability across Codex, ChatGPT, Cursor, GitHub Copilot, Kiro, and VS Code — a different, broader "plugin" concept than this single-client Claude Code marketplace plugin.

Related on explainx.ai

  • Codex as a platform — OpenAI's open agent harness pitch, codex exec vs SDK vs app-server (Aug 19)
  • Codex Multi-Agent V2 — delegation, GPT-5.5, and the Luna removal (Aug 16)
  • Tibo vs Boris — Claude proxy ban + Work/Codex reset (Aug 9)
  • Agent Plugins — OpenAI's new open standard (Aug 6, 2026)
  • Codex vs Claude Code — developer verdict
  • ChatGPT Work vs Codex — harness split same week
  • CLAUDE.md routing — Fable + codex-plugin-cc mechanics
  • Codex slash commands reference
  • AI coding plugins ecosystem — OpenAI + Anthropic
  • GPT-5.6 Sol in Claude Code via claudex
  • Fable advisor + Sonnet executor patterns
  • Loop engineering — when to stay single-agent

Sources: openai/codex-plugin-cc · @Saboo_Shubham_ July 12, 2026 · Codex v1.0.6 release


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.

Spotted something out of date? Let us know.
Yash Thakker

Written by

Yash Thakker

Yash is an AI expert with over 300K learners. Join his workshops →

Related posts

Aug 9, 2026

Tibo vs Boris: Claude Proxy Ban, Unblock, and a Codex Limit Reset

A developer reproduced Tibo’s claudex / CLIProxyAPI recipe, then lost his Anthropic account to “suspicious signals.” Boris Cherny called it a mistaken classifier, unblocked him, and joked about hiring. Tibo reset paid ChatGPT Work and Codex weekly limits. explainx.ai maps the policy, the proxy, and what “freedom of harness” actually means.

Jul 12, 2026

Why Anthropic and OpenAI Reset Limits in the Same Week — Fable 5 vs GPT-5.6 Sol

@ClaudeDevs and @thsottiaux both reset limits as GPT-5.6 Sol and Fable 5 collided. explainx.ai explains the competitive math — 60 vs 59 benchmark points, 30% Fable cost, and why neither can afford angry developers this week.

May 27, 2026

Claude Code Security-Guidance Plugin: AI-Powered Vulnerability Detection with 30-40% Reduction in PR Security Issues

The new security-guidance plugin for Claude Code reviews code on file edits, after model turns, and on commits to identify security vulnerabilities before they reach production. Internal rollout at Anthropic shows 30-40% fewer security-related PR comments.