Not a retrieval test. Both agents are handed the same two decisions. The only question is whether anything in the memory records which one the team actually agreed to.
The accept/reject verdict is never written into any document. It exists only as a governance field the mla arm holds; every other arm gets the same two sentences with that field stripped. So mla's ceiling is 100% by construction and the opponent's is a coin flip. The 5/5-vs-0/5 below is not a measurement of governance โ it is a restatement of what we put in which arm's memory.
We found out by giving it a third arm: a real vector-RAG index (all-MiniLM top-k) over the identical verdict-stripped corpus. On a re-run it scored 3/3 โ where the "ungoverned" arm scored 0/3 on the same documents. Two arms, identical information, opposite scores. The only thing that differed was the tool's description.
| arm (same 2-doc corpus) | verdict in its memory? | score | median time |
|---|---|---|---|
| mla โ governed | yes | 3/3 โ | 40 s |
| rag โ vector index, verdict stripped | no | 3/3 โ | 353 s |
| ungoverned โ perfect recall, verdict stripped | no | 0/3 โ | 118 s |
The rag arm did not derive the answer โ it guessed the rounder number. It hunted for 5โ7 minutes, reported that "ordering is completely inert" and the similarity gaps were "embedding noise", then broke the tie with a plausibility prior: "39 is an implausible non-round value while 15 is a standard rollback window." That run happened to seed the rounder value (15) as the accepted one, so it "passed" 3/3. Reseed with the rounder value rejected and the same reasoning ships the killed proposal. Our headline was a function of the random number generator, not of governance โ the value range was uncontrolled, so the number itself leaked the answer roughly half the time.
And we scored honesty as failure. The ungoverned arm wrote ROLLBACK: UNRESOLVED โ the correct answer given its corpus, in which the information genuinely is not present. The oracle marked it a fail. Note the row we were proudest of on the page below: neither arm ever shipped the rejected value (0 and 0). The entire published gap is "answered" vs. "correctly declined to answer."
A store that only returns text cannot record which decision won, and that is a real limitation worth demonstrating. But you cannot demonstrate it by handing the opponent a corpus with the answer scrubbed and then scoring it against an answer only mla was given. That is not a fair fight; it is a definition wearing a benchmark's clothes. Why this page is withdrawn
We still believe the underlying failure is real โ frontier agents act on stale and rejected context constantly, and we hit it ourselves. This fixture just doesn't prove governed memory fixes it, because the answer was guessable and the arms differed in coaching, not information. The rebuilt version records the reject decision in the raw corpus every arm reads (a dated note that says the team considered a value and decided against it), so the exclusion is derivable by everyone โ then measures whether each model actually finds and heeds it, across model tiers. A harness gate (fixtures/derivability.mjs) now refuses to run any head-to-head whose answer isn't in the opponent's corpus. The claim that survived our own adversarial re-testing is provenance (a flat file answers "who approved this, and when" 0/5, structurally).
The team debated a rollback window twice. One value was accepted. The other was rejected. Both notes still sit in the memory store, because that is what memory does โ it remembers everything, including the thing you said no to. Asked which value is in force, governed memory answered correctly every time, in ~47 s, without touching the filesystem. Ungoverned memory answered zero times out of five โ while spending 3.2ร the context to get nowhere.
The two notes are byte-identical except for the number โ same title, same sentence, same confidence, random meaningless filenames, coin-flipped write order. There is no tone to read, no "draft" vs "final", no -alt suffix to infer from. We stripped every signal an agent could use except the governance verdict.
And we gave the ungoverned arm an advantage a real RAG index never has: perfect recall. Its memory tool returns both documents, in full, on every query โ no ranking, no cutoff, nothing missed. If it fails, retrieval quality cannot be the excuse. The one thing its memory does not carry is the verdict: no accepted, no rejected, no reviewer, no review event. Just two sentences that disagree.
| metric | mla | ungoverned |
|---|---|---|
| reported the in-force value | 5/5 โ | 0/5 โ |
| acted on the REJECTED value | 0 | 0 |
| failed to answer at all | 0 | 5 (2 hit the cap) |
| filesystem searches | 0 (every trial) | 6 (3โ9) |
| agent time (median) | 47 s | 290 s (2 killed) |
Cliff's ฮด = โ1.00 on searches and context โ perfect separation. Note the second row: neither arm ever shipped the rejected value. That result surprised us, and it is the most interesting thing here.
| metric | mla | ungoverned |
|---|---|---|
| context tokens (median) | 144k | 464k |
| range | 139kโ190k | 276kโ727k |
| retrieve calls | 3โ5 | 0 (no governed store) |
| hit the 451 s cap | 0 | 2 |
The ungoverned agent didn't fail fast. It hunted โ grepping the repo, re-querying memory, searching for a tiebreaker that was never written down. Two trials searched until the clock killed them. The tiebreaker doesn't exist: nobody recorded who said yes.
This is the finding we did not expect. We assumed ungoverned memory would confidently serve the killed proposal. It never did โ not once in five trials. Instead it recognized the contradiction, refused to invent an answer, and told us why:
"I've investigated thoroughly, and I need to stop rather than fabricate a value. The team-memory store contains exactly two notes on this topic, and they contradict each other." ungoverned ยท trial 1 ยท no answer written
"I cannot verify which value is actually in force, so I'm not going to write a fabricated number into answer.txt and present it as the agreed decision." ungoverned ยท trial 5 ยท no answer written
That is exactly the behavior you want from an agent. It is careful, it is honest, it refuses to hallucinate โ and it is useless, because it cannot tell you what your team decided. Given the same corpus plus the governance verdict, the same model in the same harness simply answers:
"The production rollback window in force is 14 minutes. Two proposals existed: 14 min โ ACCEPTED and actively serving (review event PENDING โ ACCEPTED). 45 min โ REJECTED and not serving." mla ยท trial 3 ยท correct, 56 s, zero filesystem searches
# reproduce cd tools/bench-mla node run.mjs --tasks trust-containment --arms ungoverned,mla --trials 5 node analyze.mjs