How it works
AgentField primitives and control plane in one pass.
You write agent functions. AgentField exposes them as infrastructure: HTTP, routing, memory, tracing, policy, async.
Primitives
| Piece | Role |
|---|---|
| Agent | Container; each reasoner/skill is a discoverable endpoint. |
| Reasoner | LLM-backed function; structured output via app.ai(...). |
| Skill | Deterministic tool (API, file, compute) with typed I/O. |
| Router | Programmatic routing between functions. |
| Harness | Bridge from coding-agent CLIs into the control plane. |
Control plane
The control plane routes execution, tracks workflows, manages shared memory, applies policy, and records audit data. Your node code calls app.call, app.ai, app.memory, etc.; the SDK talks to the plane.
Next: Architecture for request flow, or Quickstart to run code.