What problem does it solve? Single-model AI workflows risk blind spots: one model's plan or review reflects only its own biases and training. This Skill brings in OpenAI Codex CLI as a genuinely independent second AI, so plans and code reviews are cross-checked by two separate models before you commit. ## Core Features & Use Cases - Dual Plan Mode: Claude drafts its own implementation plan first, then Codex independently drafts one via codex exec --sandbox read-only, and both are presented side by side with a merge recommendation. - Dual Review Mode: Claude reviews the current diff using a code-review checklist, then runs codex review --uncommitted or codex review --base <branch>, and deduplicates both sets of findings. - Implement-Then-Review Mode: A subagent implements the task, then Codex reviews the resulting changes before the work is called done. - Use Case: Before merging a risky refactor, ask for a dual review — Claude and Codex each inspect the diff, and you see exactly which issues only one of them caught. ## Quick Start Ask the AI to get a second opinion from Codex on the current uncommitted changes and compare both reviews.