Code inspection can reach CODE_VERIFIED — locating a mechanism in a named file, line and symbol — and the hypothesis it was checking still ends the run at REPO_CLAIM.
Observed in a live run: inspection reported CODE_VERIFIED for two repositories, one of them matching a spreading-activation traversal module by name and content. The coverage counter verifiedArtifacts stayed at 0 and the final verdict was EVIDENCE_NOT_VERIFIED.
The verdict is not wrong — no evidence row carries a code-level class, so the report honestly says nothing was verified. But the inspection's finding never becomes evidence for anything, which makes the whole capability decorative.
What is missing: a path from CodeInspectionResult to an Evidence row carrying CODE_VERIFIED, bound to the specific hypothesis claim the inspection was checking.
The hard part, and why this is not a five-line fix: an inspection verifies that a mechanism appears in a repository. A hypothesis claims that this mechanism addresses this failure mode. Those are different propositions, and letting the first silently satisfy the second would reintroduce exactly the inflation this project exists to prevent. The binding needs to be explicit about which claim the file evidences.
Code inspection can reach
CODE_VERIFIED— locating a mechanism in a named file, line and symbol — and the hypothesis it was checking still ends the run atREPO_CLAIM.Observed in a live run: inspection reported
CODE_VERIFIEDfor two repositories, one of them matching a spreading-activation traversal module by name and content. The coverage counterverifiedArtifactsstayed at 0 and the final verdict wasEVIDENCE_NOT_VERIFIED.The verdict is not wrong — no evidence row carries a code-level class, so the report honestly says nothing was verified. But the inspection's finding never becomes evidence for anything, which makes the whole capability decorative.
What is missing: a path from
CodeInspectionResultto anEvidencerow carryingCODE_VERIFIED, bound to the specific hypothesis claim the inspection was checking.The hard part, and why this is not a five-line fix: an inspection verifies that a mechanism appears in a repository. A hypothesis claims that this mechanism addresses this failure mode. Those are different propositions, and letting the first silently satisfy the second would reintroduce exactly the inflation this project exists to prevent. The binding needs to be explicit about which claim the file evidences.