Part 1 · 1.1 Overview
The whole machine, in one picture
What are we doing here.
§Everything is one list
Imagine a single, ever-growing list. Every entry on it is small — a handful of fields — and once written, never changes and never moves. That list is the whole of what the system knows: not a summary of it, not a cache of it — it is it. Nothing the system ever shows you exists anywhere else.
Now put two kinds of small machines around that list.
Listeners. A listener watches the list for entries of a particular shape — "tell me whenever something matching this arrives." It keeps a tiny running note of what it has seen so far (sometimes just the latest one, sometimes everything so far), and when its note finally has everything it was waiting for, it says so — by writing one more entry onto the very same list, announcing "I'm ready, and here is what I collected."
Doers. A doer watches for exactly that "I'm ready" announcement from one or more listeners. Once every listener it cares about has announced readiness, it does its one thing — write something, ask a question of a language model, hand off to a person — and whatever it produces becomes, again, more entries on the list.
That is the entire machine. There is no third kind of thing. A person typing an answer, a report being synthesised from four separate readings, a whole delegated sub-investigation opening and closing — every one of them is built from nothing but listeners and doers, arranged and re-arranged, watching the same one list.
§Why "the list never changes" matters more than it sounds like it should
Because it means the system's entire history is always available, in order, to anyone who wants to look — and because nothing can quietly go missing or get rewritten, every later claim can, in principle, be traced back to the exact moment it entered. This single property is what lets the rest of this book talk confidently about "where a finding came from" (Part 7) and "what the machine actually did" (Part 6) without hand-waving — the answer to both is always, literally, "look at the list."
§Where a person fits
A person interacts with the system entirely by adding entries to the same list — typing an answer, pressing a button that means "yes, use this," pasting in a question. Nothing a person does is treated specially by the machinery underneath; a person's contribution is just another entry, distinguishable from a machine's only by what it says, never by some separate privileged channel. What the person sees on screen, in turn, is never anything more than a live read of the list, redrawn — never a second source of truth living only in a browser tab.
§The shape that repeats at every scale
The same rhythm — something arrives, a listener collects until it has enough, it announces readiness, a doer acts, more arrives — repeats identically whether you are looking at one tiny form on screen or an entire delegated sub-investigation running for a minute unattended. Part 7 is exactly this same shape, once more, wrapped in its own small fence so its findings do not leak out before a person has looked at them. Nothing bigger the system does is a different kind of thing from a form waiting for one field to be filled in — it is only ever more of the same two ingredients, composed.