Claude Code용 코덱스 플러그인

hackernews | | 📦 오픈소스
#ai 딜 #chatgpt #claude #claude code #codex #gpt-5 #openai #개발 도구 #코드 리뷰 #플러그인 #ai 플러그인 #업무 자동화
원문 출처: hackernews · Genesis Park에서 요약 및 분석

요약

오픈AI가 클로드 코드(Claude Code) 환경 내에서 자사의 코덱스(Codex) 모델을 연동해 코드 리뷰 및 작업 위임을 가능하게 하는 전용 플러그인을 출시했습니다. 사용자는 읽기 전용인 일반 리뷰(`/codex:review`)와 설계 결정을 집중적으로 검토하는 적대적 리뷰(`/codex:adversarial-review`)를 진행할 수 있습니다. 또한 버그 수정이나 코드 변경 같은 실제 작업을 코덱스 에이전트에 위임(`codex:rescue`)하고, 진행 상황 확인 및 취소 등의 관리를 손쉽게 수행할 수 있습니다.

본문

Use Codex from inside Claude Code for code reviews or to delegate tasks to Codex. This plugin is for Claude Code users who want an easy way to start using Codex from the workflow they already have. /codex:review for a normal read-only Codex review/codex:adversarial-review for a steerable challenge review/codex:rescue ,/codex:status ,/codex:result , and/codex:cancel to delegate work and manage background jobs - ChatGPT subscription (incl. Free) or OpenAI API key. - Usage will contribute to your Codex usage limits. Learn more. - Node.js 18.18 or later Add the marketplace in Claude Code: /plugin marketplace add openai/codex-plugin-cc Install the plugin: /plugin install codex@openai-codex Reload plugins: /reload-plugins Then run: /codex:setup /codex:setup will tell you whether Codex is ready. If Codex is missing and npm is available, it can offer to install Codex for you. If you prefer to install Codex yourself, use: npm install -g @openai/codex If Codex is installed but not logged in yet, run: !codex login After install, you should see: - the slash commands listed below - the codex:codex-rescue subagent in/agents One simple first run is: /codex:review --background /codex:status /codex:result Runs a normal Codex review on your current work. It gives you the same quality of code review as running /review inside Codex directly. Note Code review especially for multi-file changes might take a while. It's generally recommended to run it in the background. Use it when you want: - a review of your current uncommitted changes - a review of your branch compared to a base branch like main Use --base for branch review. It also supports --wait and --background . It is not steerable and does not take custom focus text. Use /codex:adversarial-review when you want to challenge a specific decision or risk area. Examples: /codex:review /codex:review --base main /codex:review --background This command is read-only and will not perform any changes. When run in the background you can use /codex:status to check on the progress and /codex:cancel to cancel the ongoing task. Runs a steerable review that questions the chosen implementation and design. It can be used to pressure-test assumptions, tradeoffs, failure modes, and whether a different approach would have been safer or simpler. It uses the same review target selection as /codex:review , including --base for branch review. It also supports --wait and --background . Unlike /codex:review , it can take extra focus text after the flags. Use it when you want: - a review before shipping that challenges the direction, not just the code details - review focused on design choices, tradeoffs, hidden assumptions, and alternative approaches - pressure-testing around specific risk areas like auth, data loss, rollback, race conditions, or reliability Examples: /codex:adversarial-review /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 This command is read-only. It does not fix code. Hands a task to Codex through the codex:codex-rescue subagent. Use it when you want Codex to: - investigate a bug - try a fix - continue a previous Codex task - take a faster or cheaper pass with a smaller model Note Depending on the task and the model you choose these tasks might take a long time and it's generally recommended to force the task to be in the background or move the agent to the background. It supports --background , --wait , --resume , and --fresh . If you omit --resume and --fresh , the plugin can offer to continue the latest rescue thread for this repo. Examples: /codex:rescue investigate why the tests started failing /codex:rescue fix the failing test with the smallest safe patch /codex:rescue --resume apply the top fix from the last run /codex:rescue --model gpt-5.4-mini --effort medium investigate the flaky integration test /codex:rescue --model spark fix the issue quickly /codex:rescue --background investigate the regression You can also just ask for a task to be delegated to Codex: Ask Codex to redesign the database connection to be more resilient. Notes: - if you do not pass --model or--effort , Codex chooses its own defaults. - if you say spark , the plugin maps that togpt-5.3-codex-spark - follow-up rescue requests can continue the latest Codex task in the repo Shows running and recent Codex jobs for the current repository. Examples: /codex:status /codex:status task-abc123 Use it to: - check progress on background work - see the latest completed job - confirm whether a task is still running Shows the final stored Codex output for a finished job. When available, it also includes the Codex session ID so you can reopen that run directly in Codex with codex resume . Examples: /codex:result /codex:result task-abc123 Cancels an active background Codex job. Examples: /codex:cancel /codex:cancel task-abc123 Checks whether Codex is installed and authen

Genesis Park 편집팀이 AI를 활용하여 작성한 분석입니다. 원문은 출처 링크를 통해 확인할 수 있습니다.

공유

관련 저널 읽기

전체 보기 →