원클릭으로
review
Goal-backward code review — verify recently completed work EXISTS, is SUBSTANTIVE, and is WIRED correctly
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Goal-backward code review — verify recently completed work EXISTS, is SUBSTANTIVE, and is WIRED correctly
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | review |
| description | Goal-backward code review — verify recently completed work EXISTS, is SUBSTANTIVE, and is WIRED correctly |
Use this skill to run the review cycle: a goal-backward verification of recently completed work.
Instead of reading code forward and noting observations, start from what should be true and verify it is.
For each recently completed task, check three levels:
| Level | Question |
|---|---|
| EXISTS | Do the expected files, functions, structs, and tests actually exist? |
| SUBSTANTIVE | Is the implementation real — not stubs, not empty bodies, not TODOs? |
| WIRED | Is it connected? Can it actually be reached from the entry point? |
AGENTS.md and TODO.md to understand what work has been completed recently.flow/log.jsonl to see recent cycle outcomes and iteration historyFrom the context above, list the recently completed tasks or components. Focus on work done in the last few iterations.
For each completed task, apply the three-level check:
src/log/jsonl.rs)todo!() / empty?unwrap()?lib.rs or mod.rs?Check for:
TODO or FIXME comments in recently-committed codeSummarize clearly:
Maintain and improve the codebase — dependency updates, refactoring, docs, dead code removal, test coverage
Analyze project state, prioritize TODO.md, create or refine plans for upcoming work
Reflect on a completed coding iteration to identify improvements
Keep TODO.md synchronized with completed work before committing
Execute TDD workflow with RED/GREEN/REFACTOR phases and quality verification