agentOS In 10 Minutes
Problem
Section titled “Problem”agentOS is easy to misuse when a reader starts from an adapter, provider, or UI
stream and treats that surface as the source of truth. D10 makes the durable
truth explicit: invariant.d10.truth-identity says a run is read through
scopeRef plus effectAuthorityRef, and invariant.d10.namespace-integrity
says factOwnerRef is injected by the owning package boundary.
The generated indexes are the quickest route through that model:
Start Here routes intent to recipes, primitives, errors, and
tests. When a reader needs the exact exported symbol, use
primitive.kernel.LedgerEvent, primitive.runtime.Ledger, or
primitive.runtime.SubmitSpec from the generated primitive catalog instead of a
hand-written package table.
The working loop is:
- Pick a generated recipe id from Start Here.
- Follow the recipe to the generated primitive ids it names.
- Read the linked source doc for the invariant behind that primitive.
- If an
agent_os.*error appears, use the generated error catalog for the invariant and fix path. - Verify with the tests listed in the invariant matrix.
The key primitives are small:
primitive.kernel.ScopeRefnames the structured scope.primitive.kernel.AuthorityRefnames the effect authority.primitive.kernel.FactOwnerRefnames package ownership.primitive.runtime.Ledgercommits and reads durable facts.primitive.runtime.MaterializedProjectionDefinitionderives observable state.primitive.ag-ui.projectLedgerEventToAgUiEnvelopeprojects runtime facts to browser-safe AG-UI frames.
Those ids are not a second fact table. They are references into generated docs
whose source is exported TSDoc and docs/agent/*.source.json.
Non-Goals
Section titled “Non-Goals”This page does not teach a compatibility path for old ledger rows. D10 has no legacy migration and no scope-wide public scan.
This page does not introduce @agent-os/create, multi-agent relationship
calculus, WorkspaceFs, OverlayFs, defineBoundary(), or durable
reconnect/resume. Those remain outside the current generated navigation layer.
This page does not replace package docs. Package docs explain package intent; the generated agent docs route work by invariant and primitive id.