How it all works, seen as a whole

What this part is for. Before any of the six parts that follow go deep on one piece, this part gives the whole shape once, cleanly, so nothing later has to be explained from nowhere. It answers the question a genuinely new reader actually has — "if I had never seen this system before, what is the one picture I should carry into everything else?"

The one-sentence version: everything the system knows is one append-only list of small records; every visible behaviour — a form appearing, a question being answered, a report being written — is a small piece of code that watches that list for something specific and, once it sees it, adds more to the list.

  1. 011.1 OverviewThe whole machine in one picture, with no jargon yet: one list that only grows, and two kinds of small part that watch it.
  2. 021.2 Analytical RationaleWhy this shape, specifically, suits analytical work.
  3. 031.3 Functional SpecificationThe machine's own vocabulary for the same picture, cited to source.
  4. 041.4 Technical ImplementationThe actual loop, in code, with one small trace: how a tuple is appended, heard, and answered until the machine settles.