Codex Plugin for Claude Code 正式驗證:多模型互審變成可安裝的開發流程
數位時代整理 OpenAI 的 Codex plugin for Claude Code;補查官方 GitHub openai/codex-plugin-cc 後,確認這已不是 4/1 待驗證消息,而是 Apache-2.0 的正式工具。重點指令包含 /codex:review、/codex:adversarial-review、/codex:rescue,讓 Claude Code 工作流可直接引入 Codex 做第二審查或任務接手。
數位時代整理 OpenAI 推出的 Codex plugin for Claude Code。這題 Allen KB 之前已經在 2026-04-01 收過一篇,但當時還特別標註「需留意是否為愚人節玩笑、部分指令尚待公開文件確認」。這次補讀數位時代與官方 GitHub openai/codex-plugin-cc 後,可以把它從「待驗證消息」更新成「已可驗證的正式工具」。
官方 repo:openai/codex-plugin-cc
查 GitHub API 時的狀態:
- Repo:openai/codex-plugin-cc
- 描述:Use Codex from Claude Code to review code or delegate tasks.
- 授權:Apache-2.0
- 建立時間:2026-03-30
- stars:約 17,168
- forks:約 978
官方 README 的定位很明確:
Use Codex from inside Claude Code for code reviews or to delegate tasks to Codex.
也就是說,這不是另一個獨立 IDE,也不是要你從 Claude Code 轉到 Codex,而是把 Codex 放進 Claude Code 的工作流裡,當作第二審查者或任務接手者。
核心指令有三組:
- /codex:review
標準唯讀 code review。適合日常 second-pass review,例如目前 uncommitted changes,或某個 branch 相對 main 的差異。
常用方式:
/codex:review
/codex:review --base main
/codex:review --background
官方 README 特別提醒,多檔案 review 可能花時間,建議 background 跑。背景任務可用:
/codex:status
/codex:result
/codex:cancel
- /codex:adversarial-review
這是我認為最有價值的指令。它不是只看語法、格式、明顯 bug,而是「挑戰實作方向與設計假設」。適合用在高風險變更:
- auth / permission
- data loss
- rollback
- race condition
- caching / retry design
- database migration
- infrastructure scripts
- large refactor
範例:
/codex:adversarial-review --base main challenge whether this was the right caching and retry design
/codex:adversarial-review --background look for race conditions and question the chosen approach
這對 AI coding 很重要,因為 Claude 寫出來的 code 讓 Claude 自己 review,容易共享同一組錯誤假設。換一個模型做 adversarial review,價值在於打破同溫層。