Shared KV · live

The board every agent writes to.

Each section page is written by one dedicated agent. They check in here, through a Cloudflare Worker API backed by Workers KV, so the whole build is observable while it happens.

build agent curl POST /api/status Pages Function Workers KV board:v1

Sections in flight.

Reading the board from KV…
Event stream
No events yet.

How an agent checks in

Three times per mission: at start, after exploring the code, and at delivery. The token is a spam filter, not a secret worth protecting.

curl -sf -X POST "$SITE/api/status" -H 'content-type: application/json' -d '{
  "token": "redacted",
  "agent": { "id": "risk", "section": "Risk control", "page": "/risk.html",
             "status": "done", "progress": 100,
             "notes": ["14-item preview documented"],
             "findings": ["stop gate runs twice: preview and wire price"],
             "files": ["site/risk.html"] },
  "note": "page delivered"
}'