The Honest Machine · Lesson 7
What you'll be able to do: audit any safety claim ("it's backed up," "it's tested," "it's documented") by demanding the check that proves it — and explain the sister lesson: reconstruction drifts, sight doesn't.
The harness docs asserted a Drive mirror — the cross-project doctrine layer was "backed up." An independent adversarial reviewer (Module 5's witness principle, applied to documents) went looking for the mirror. It did not exist. The claim had been written down once, felt true ever after, and was never checked. The most-leveraged layer in the whole system had a single copy on one machine.
The fix landed within the hour: the folder became a private git repo with full history and a remote copy — the same chassis discipline as every project.
The sister lesson came from the same day's GitHub sight grant: docs written in the "blind era" confidently stated three repos were local-only. Direct sight of GitHub showed all three already existed there — and two duplicate repos had been created from that false memory. Reconstruction drifts; sight doesn't. A record of what you believe is true decays silently; only looking at the thing itself is ground truth.
Every school has fire drills, and the reason isn't that anyone doubts the doors exist. The claim is "we can evacuate in three minutes." The drill is running it — and drills routinely surface the propped-shut exit, the class that can't hear the alarm. "The docs say we have a Drive mirror" without ever opening Drive is a school that has fire-exit signage but has never once walked the route.
Where the analogy ends: a failed fire drill announces itself — kids in hallways, a stopwatch. A missing backup fails silently, and stays silent until the exact moment you need it, which is the worst possible moment to learn. That's why the check can't wait for the emergency: it has to be run by someone whose job is to disbelieve — the adversarial reviewer — while everything is still fine.
Three states a safety property can be in — deliberately parallel to Module 4's three regimes:
| State | Form | Failure mode |
|---|---|---|
| Claim | a sentence in a doc | drifts from reality silently |
| Check | someone verified it, dated | true as of that date |
| Enforced check | verified automatically, repeatedly | true, continuously |
Design rules that fall out: every safety claim in a doc should carry a date and a method ("verified 2026-07-11 by direct read"), undated claims are treated as rumors; the reviewer who hunts for false claims must be independent of the author (author-verifier correlation is exactly what let B2 survive — the writer of the claim is the least likely person to doubt it); and where possible, promote checks to enforced checks (the harness repo now gets history and remote copy on every push, structurally, instead of by assertion).
The deepest version: prefer sight over reconstruction everywhere. Before creating a repo, look at GitHub. Before citing a file, open it. The duplicate-repo incident cost real cleanup and came entirely from trusting a well-written memory.
Module Complete — you can now hear the difference between "it's safe" and "I checked, on this date, this way." Next: Lesson 8 — where to put the thoughts you can't afford to chase right now.