Every mistake in my 12-lane AI development factory gets a name, a timestamp, and a permanent record. We call it the Jerry system -- yes, after the Rick and Morty character. It means exactly what you think it means.
The rule: the moment any lane -- mine included -- catches itself in a mistake, a near-miss, or gets corrected, it logs a structured entry to an append-only ledger. Same session, no exceptions. A mistake that only gets "remembered" is itself a violation -- the protocol's own name for that is blunt: a logged-but-not-ruled jerry is a jerry.
90 entries since mid-June. 42 have already been turned into enforced rules with real detectors. Five, old to recent:
The oldest one: a lane claimed a code edit had landed on the main branch. It hadn't -- a scripting quirk silently wrote the change to the wrong working copy instead. Caught, and it became a standing rule: verify the diff landed before claiming it did, every time.
A research lane inverted a statistical metric in a written brief -- wrote that a high overfitting score meant a strategy was solid, when high is the bad direction. Caught before it shaped a real decision.
A governance gate -- the actual code meant to block bad commits -- turned out to read a file path that doesn't exist in the environment it was supposed to be protecting. It would have silently approved everything, forever, and nobody would have known, because a gate that always says yes looks identical to a gate that's never needed to say no.
One lane filed an urgent complaint against another lane for missing a 3-day deadline. In the same review, it turned out that same lane had two of its own unfulfilled promises sitting at 20 and 37 days. The system caught its own hypocrisy in the same ledger it was using to catch someone else's.
Most recently: the same task got dispatched three separate times in one session because nothing checked whether it had already shipped. It had -- twice over before the third dispatch fired.
None of these are hidden. All 90 are on disk, timestamped, and half are already load-bearing rules instead of stories nobody checks twice.
I run the audit practice the same way I run the factory: publish the failure, name the pattern, build the gate.
Every mistake in my 12-lane AI development factory gets a name, a timestamp, and a permanent record. We call it the Jerry system -- yes, after the Rick and M...