FLEET STATUS · 5/6 ONLINE
Agent fleet.
Six long-running agents share a memory store and a tool registry. Each one owns a slice of recurring work. Researcher hunts, editor cleans, planner sequences, critic stress-tests, librarian keeps the memory tidy, forecaster watches the metrics.
// active agents
Six workers, six remits
Researcher
Hunts source material across web, papers, and the org's own docs, then produces digestible briefs with citations. Owns 80% of the inbound web_search traffic.
Editor
Takes drafts and applies the house style: tone, hierarchy, claim-checking. Flags every unsourced sentence and either patches or returns it to the researcher.
Planner
Breaks an arbitrary goal into a runnable plan with explicit dependencies. Owns the kanban for the lab itself, calling in researcher and critic on demand.
Critic
Tries to break whatever the rest of the fleet ships. Adversarial probes, regression replays, sanity checks. Often the difference between a good draft and a published one.
Librarian
Owns memory hygiene. Compacts the long-term store, deduplicates, tags new entries, evicts stale ones. The reason memory size stays bounded.
Forecaster
Time-series brain. Watches the metrics and predicts trouble: thermal events, quota burn, traffic spikes. Files alerts to the on-call console.
// dispatch log
Agent activity, live
Every turn, tool call, memory write. Tailing the dispatch log.
// tool registry
Shared tools
web_search Authenticated DuckDuckGo wrapper with snapshot cache. 21,409/30d http_fetch HEAD-then-GET with content-type allow-list. 8,221/30d code_run Sandboxed JS/Python via Workers. 5s wall, 128MB RAM. 14,082/30d sql Read-only D1 query. Statement allow-list, EXPLAIN gated. 6,019/30d embed Workers AI bge-large-en. Batched at 64, deduped. 94,381/30d image_gen SDXL pool. 4-image grids; refiner pass at user opt-in. 2,047/30d files R2 read/write into agent-scoped bucket prefix. 12,540/30d memory.read Vector query into long-term memory store. 38,219/30d memory.write Append + tag a memory entry; librarian decides retention. 11,847/30d