Operating

Build AI agents that survive production.

Operator-grade teardowns and runnable systems for builders moving past demos. Read the work, or run it. Nothing here is theory - everything ships.

Currently featured

Rotates as new work ships
TeardownFeatured - Updated Feb 8

OpenClaw Source Code Structure: Gateway, Heartbeat, Skills, and Runtime Architecture

OpenClaw source code teardown mapping the repo structure, gateway, heartbeat, routing, skills, self-modification, and the one trust risk behind the hype.

// excerpt from teardown

# operator router - entry
def route(intent, ctx):
  lane = classify(intent)
  if ctx.risk > "med":
    return escalate(lane)
  return dispatch(lane, ctx)

From the doctrine

Agents do not need more theater. They need control loops that keep working after the demo.

Five principles for building agents that keep working after the first successful run.

Read the full doctrine