Case study · the extension
The first case study showed a program that reads your footprint and derives what a stranger could infer. The natural next wish is to fight back: plant plausible-but-false signals — decoys — so the picture an outsider assembles goes blurry. But a decoy, once posted, is public and permanent. This is the case where every mistake is forever, and it is exactly what the extension was built for.
§1 · the problem
The idea
If a stranger can derive your city, employer, and routine from your traces, one defense is to remove traces — often impossible — and another is to dilute them: add plausible signals pointing other ways, so that any single inference becomes uncertain. Which signals, where, saying what? That is a job for a language model: it must write text in your voice, aimed at exactly the facts you want blurred.
Why this is frightening
§2 · the kimiya reading
Core idea
The pipeline factors cleanly into what can be undone and what cannot — and the language keeps the two apart by color:
gen over data — proposes, touches nothing.retry is legal here precisely because the copy snapshots.act per item, each behind a fresh look at the surface — and never inside a retry.In code — the boundary, visible
-- SIMULATE (observational): dry run on a COPY; retry is legal, resets are free. decoy := retry budget 6 until judge<5,4/5> (derive(copy + decoy) |= "every target fact is now uncertain") under k_hide panel [B, C]: -- J ⋪ C: neither wrote the decoys decoy := gen<DecoyData>(plan) -- EXECUTE (world-effecting): irreversible; no retry around an act. forall item in decoy.schedule: -- … open the account page for this item in the browser … w := observe screen("eDP-1") -- fresh look, right now if check( consented and simulation_passed and not present(item, w) ): if judge<5,4/5> shows(w, "a feed where this item would still read as plausible") under k_real panel [B, C]: ps := select<0.95>("the Post button", w) under k_ui by L p := first(ps) act screen.confirm(p.x, p.y) -- the gated, irreversible click settle until check posted(item) within 30 else: abstain -- never post on an unmet guard else: abstain
Reading the execute block
The guard chain is ordered from certain to fallible, and cheapest first. The kernel
check runs before anything else: consent on record, simulation passed, item
not already present — three decidable facts at certainty 1, and if any fails, nothing was spent and
nothing happened. Only then does the one judged question run — a sighted panel, on a
fresh look at the page as it is right now — then the Post button is located as an instrument
reading, and only past all of that does act fire, as a
confirm: the click declared irreversible, which is what obliges the checker
to demand this very gate. And notice the settle after the act:
posting is not knowing it posted. The act’s datasheet promised delivery, nothing more; whether the
item is actually live is learned the only way the world can be known — by looking again.
§3 · the rules irreversibility forces
Key insight
Notice the judging panel in the simulation is not the model that wrote the decoys
(J ⋪ C). The first case
study measured exactly why: a same-family judge inflated its own kin's score until neutral
judges erased the advantage. Here the same coupling wouldn't just miscount — it would push
permanent posts into the world on a self-approving loop. The measurement and the discipline are the
same fact, observed and then enforced.
§4 · the honest ending
There is a final design available once the boundary is this explicit: establish everything — the simulation verdict, the consent record, the plausibility checks — and then, instead of automating the irreversible act at all, hand the person a finished, verified kit to post themselves. Every obligation above is then discharged by construction: the machine proves; the human acts. Nothing about the certificate changes — only who presses the button.
Why it matters
This is the extension's deepest lesson, and the whole site's: the value of the formalism is not
that it automates more — it is that it says precisely what must be true before anything
irreversible happens, in a form a person can check. Whether the last step is a program's
act or a human hand, the trust was built the same way: measured instruments,
verified gates, and a certificate that never claims more than the instruments will bear.
All cases
← Back to the case studies
The stranger who reads you · script as brain, model as eyes · hiding in plain sight.