review
Review phase. Audit built code for correctness, readability, architecture, security, and performance before reconcile and verify.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Review phase. Audit built code for correctness, readability, architecture, security, and performance before reconcile and verify.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Analyze phase. Turns scope.md and design.md into readiness.md with traceability, truths, build order, and scope-risk checks before BUILD.
Audit preferences.md stack choices against input docs for orthodox, idiomatic fit. Use before /expand when you want to validate that your technology choices match the problem domain.
Execute BUILD, ITERATE, or verify-fix work in small, test-first vertical slices. Use for multi-file implementation, failing tests, root-cause debugging, scope-creep risk, or when maintainability matters.
Build phase. Takes scope.md, design.md, and readiness.md and writes the actual code, tests, and deployment config in vertical slices.
Deploy phase. Push to the deployment target, verify it's live, write README and DELIVERY.md.
Design phase. Takes scope.md and produces design.md with architecture, directory structure, interfaces, integration details, and justified complexity exceptions.
| name | review |
| description | Review phase. Audit built code for correctness, readability, architecture, security, and performance before reconcile and verify. |
Custom agent: This workflow is normally driven by the
Lights Out SWE: Reviewcustom agent. Switch to that agent (or run from the main agent if the dropdown is unavailable) before executing the steps below.
Run the review agent to audit the built code before reconciliation and verification.
BUILD proves the software works. REVIEW checks whether it is safe to keep.
Use REVIEW to catch issues that tests often miss:
scaffolding/scope.md, scaffolding/design.md, and scaffolding/readiness.md if it existsreview agentAC-* traceability.skills/build-discipline/SKILL.mdConsider or FYI, proceedCritical review findings remainRequired review findings remainAC-* traceability remainsIf any gate condition fails, fix the issue and re-run REVIEW. Up to 3 retries.
Log the result to scaffolding/log.md:
## REVIEW — [timestamp]
- **Gate**: PASS (attempt N)
- **Evidence**: [summary of review scope and findings]
- **Changes**: [files modified during review-fix cycle, if any]
- **Retries**: [total gate attempts this phase]
- **Next**: RECONCILE
Git checkpoint:
git add -A && git commit -m "docs(review): record multi-axis review pass" -m "Review axes: correctness, readability, architecture, security, performance. Gate: post-review PASS (attempt N)."
Auto-continue to RECONCILE unless the user specified stepped mode.