CO

codex-plugin-cc

26,500TypeScriptPlugin / Integration

Official OpenAI plugin to use Codex from Claude Code for code review and task delegation.

OpenAICodexClaude CodePluginCode ReviewMulti-Agent

Overview

OpenAI's official plugin brings Codex capabilities into Claude Code, enabling seamless handoffs between the two agents for code reviews, adversarial reviews, task delegation, and background execution. It formalizes the 'multi-agent developer workflow' where Claude Code writes and iterates, Codex reviews and challenges, and the developer mediates. The plugin provides /codex:review, /codex:adversarial-review, /codex:rescue, and /codex:transfer commands.

Features

  • /codex:review — standard read-only code review
  • /codex:adversarial-review — challenge implementation decisions
  • /codex:rescue — delegate bugs, fixes, or tasks to Codex
  • /codex:transfer — move sessions to Codex
  • Background execution for long-running tasks
  • Review gate for optional PR quality gating

Installation

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

Pros

  • +Official OpenAI product with active development
  • +Enables true multi-agent developer workflow
  • +Adversarial review catches issues human reviewers miss
  • +Background execution doesn't block terminal

Cons

  • Requires OpenAI API key and Codex subscription
  • Adds latency for cross-agent communication
  • Limited to OpenAI/Codex ecosystem integration
  • Plugin marketplace dependency for installation

Alternatives

Documentation

codex-plugin-cc

Overview

codex-plugin-cc is OpenAI's official plugin that brings Codex capabilities into Claude Code, enabling seamless handoffs between the two AI coding agents for code reviews, adversarial reviews, task delegation, and background execution. With 26,500+ GitHub stars, it formalizes the "multi-agent developer workflow" — Claude Code writes and iterates, Codex reviews and challenges, and the developer mediates.

Features

  • /codex:review — standard read-only code review
  • /codex:adversarial-review — challenge implementation decisions
  • /codex:rescue — delegate bugs, fixes, or tasks to Codex
  • /codex:transfer — move sessions to Codex for specialized tasks
  • Background execution — long-running tasks don't block the terminal
  • Review gate — optional quality gate for PRs

Installation

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

Quick Start

# Review current code changes
/codex:review

# Challenge implementation decisions
/codex:adversarial-review

# Delegate a bug fix to Codex
/codex:rescue "Fix the race condition in the WebSocket handler"

Pros

  • ✅ Official OpenAI product with active development
  • ✅ Enables true multi-agent developer workflow
  • ✅ Adversarial review catches issues human reviewers miss
  • ✅ Background execution doesn't block terminal

Cons

  • ❌ Requires OpenAI API key and Codex subscription
  • ❌ Adds latency for cross-agent communication
  • ❌ Limited to OpenAI/Codex ecosystem integration
  • ❌ Plugin marketplace dependency for installation

When to Use

codex-plugin-cc is ideal for teams already using Claude Code who want to incorporate OpenAI Codex's strengths into their workflow. Use it when you need a second opinion on code quality, want to delegate complex debugging tasks to a specialized agent, or want to implement a multi-agent code review pipeline.

Resources