一键导入
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