Self-Review Prompts¶
Page Maps¶
graph LR
family["Reproducible Research"]
program["Deep Dive Make"]
section["Reference"]
page["Self-Review Prompts"]
capstone["Capstone evidence"]
family --> program --> section --> page
page -.applies in.-> capstone
flowchart LR
orient["Orient on the page map"] --> read["Read the main claim and examples"]
read --> inspect["Inspect the related code, proof, or capstone surface"]
inspect --> verify["Run or review the verification path"]
verify --> apply["Apply the idea back to the module and capstone"]
Use this page when you want short prompts that turn Make concepts into active review judgment instead of command memorization.
Graph truth¶
- Which edge explains this rebuild honestly?
- What would prove convergence here instead of only one successful run?
- Which change would make this build lie even if it still "works" once?
Public contract and artifacts¶
- Which target is truly public, and which one are you only assuming is public?
- Which output is a build result, which is proof evidence, and which is only controlled example material?
- What would another maintainer inspect first before trusting this build?
Incidents and stewardship¶
- Which command gives the cheapest clarifying evidence for this incident?
- Which failure class would you suspect first if serial works and
-jbreaks? - Which architectural layer would you inspect before approving the next non-trivial change?
Public target prompts¶
- Which target should another reviewer trust first without reading recipes?
- What does
selftestprove thatalldoes not? - Which output is meant to be consumed directly and which is only review evidence?