Expand description
Commit Validation — §6.
“Fail/Pass の二元論は現場を壊す。人類はグレーで生きてる。”
Commit は以下を全通過しなければならない:
- Topology Check (cycle detection, isolated side effects)
- Type & Domain Safety (domain crossing validation)
- Dependency Closure (asset existence, hash recording)
- Deterministic Replayability
Structs§
- Confidence
Debt - Confidence debt — things we can’t fully verify but won’t block.
- Replay
Proof - Proof that the graph can be deterministically replayed.
- Validation
Error - Validation
Report - Commit validation result. Errors block commit. Warnings don’t. Confidence debt is tracked.
- Validation
Warning
Functions§
- validate_
commit - Validate a graph for commit readiness.