How this studio is built

How one task runs

Workflow

Every unit of work runs the same loop, so any Agent can pick up another's state from three files: what happened, what's in flight, and what shipped.

How it runs

  1. A task begins
  2. Progress logged as it happens
  3. State kept in one short file
  4. Milestone written once
  5. Published

The pieces

What happened
An append-only log. Corrections are new entries, never rewrites.
What's in flight
A short working file a fresh session reads cold, so every line has to still be true. A line cap is what forces someone to read it.
What shipped
The public milestone entries this site is built from.

Where this was worked out