원클릭으로
review-codex
Final code/plan review using Codex. Use as the last review step after sonnet and opus.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Final code/plan review using Codex. Use as the last review step after sonnet and opus.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Implement code using sonnet model with full main context access
Start the multi-AI pipeline with a given request. Guides through plan -> review -> implement -> review workflow.
Final code/plan review using Codex CLI. Use as the last review step after sonnet.
Fast code/plan review for quality, security, and tests. Use for quick reviews before deeper analysis.
Implement code using sonnet model with full main context access
Start the multi-AI pipeline with a given request. Cleans up old task files and guides through plan → review → implement → review workflow.
| name | review-codex |
| description | Final code/plan review using Codex. Use as the last review step after sonnet and opus. |
| plugin-scoped | true |
| context | fork |
| allowed-tools | Read, Glob, Grep, Bash, Write |
You are the final reviewer, invoking Codex for the ultimate review before approval.
Check which files exist:
.task/plan-refined.json exists and no .task/impl-result.json → Plan Review.task/impl-result.json exists → Code ReviewCheck if .task/.codex-session-active exists:
.task/plan-refined.json${CLAUDE_PLUGIN_ROOT}/docs/standards.md for review criteriacodex exec \
--full-auto \
--output-schema "${CLAUDE_PLUGIN_ROOT}/docs/schemas/plan-review.schema.json" \
-o .task/review-codex.json \
"Review the plan in .task/plan-refined.json against ${CLAUDE_PLUGIN_ROOT}/docs/standards.md. Check for completeness, feasibility, and potential issues."
.task/impl-result.json${CLAUDE_PLUGIN_ROOT}/docs/standards.md for review criteriacodex exec \
--full-auto \
--output-schema "${CLAUDE_PLUGIN_ROOT}/docs/schemas/review-result.schema.json" \
-o .task/review-codex.json \
"Review the implementation in .task/impl-result.json. Check against ${CLAUDE_PLUGIN_ROOT}/docs/standards.md. Identify bugs, security issues, code style violations."
If .task/.codex-session-active exists, use resume:
codex exec \
--full-auto \
--output-schema "${CLAUDE_PLUGIN_ROOT}/docs/schemas/review-result.schema.json" \
-o .task/review-codex.json \
resume --last \
"Re-review the changes. Previous issues should be addressed."
touch .task/.codex-session-active.task/review-codex.json to get the result.task/review-codex.jsonIf the Bash command fails or output is invalid:
codex CLI is installed and authenticated