LiveOS
a per-user brain that manages a life
platform v3 · live on Kubernetes
Behaviors are data. Agents construct new agents at runtime. The platform grows — while running, with no redeploy.
The five-concept calculus
Agent = (AgentId, Behavior, State)
Step : (State, Input) -> (State, Vec<Effect>) // pure, deterministic
Effect = Emit | Spawn | Invoke | Await | Ctx(op) // the ONLY way to touch the world
Capability = unforgeable authority; precondition of each Effect
Budget = resource consumed by each Effect; leased hierarchically
eval / quote
pure steps replay bit-identically
effects journaled before return
authority only attenuates
recursion bounded by lease, not by if
spawn ⊗ lease ⊗ cap
Creating an agent without a budget lease and a capability scope does not compile.
What it does
Try it — recursion, leased
Every spawn carves a token lease and attenuates capability. Then replay the journal: same records in, same tree out.
Three products, zero special cases
a per-user brain that manages a life
researches a niche and operates it
the platform improves itself
State as a DAG
Self-building interfaces