What problem does it solve? Single-model code review can miss design flaws and risky decisions. This Skill sets up OpenAI's Codex plugin inside Claude Code so a second model reviews your changes, challenges design decisions, and takes over tasks when Claude gets stuck. ## Core Features & Use Cases - Cross-Model Code Review: Run /codex:review on uncommitted changes or branch diffs for a read-only second opinion from Codex. - Adversarial Review: Use /codex:adversarial-review with free-form focus text to pressure-test auth changes, infra scripts, migrations, and complex state management before shipping. - Task Delegation: Hand off stuck tasks with /codex:rescue, optionally resuming previous runs or switching to a faster model. - Background Job Management: Track, retrieve, and cancel long-running reviews with /codex:status, /codex:result, and /codex:cancel. - Use Case: Before merging a branch that changes your caching layer, run /codex:adversarial-review --base main challenge whether this caching strategy handles invalidation correctly to get a focused critique from a different model. ## Quick Start Ask the agent to install the Codex plugin from the openai/codex-plugin-cc marketplace, run /codex:setup to verify login, then run /codex:review on your uncommitted changes.