Skip to content
AgentField

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

PieceRole
AgentContainer; each reasoner/skill is a discoverable endpoint.
ReasonerLLM-backed function; structured output via app.ai(...).
SkillDeterministic tool (API, file, compute) with typed I/O.
RouterProgrammatic routing between functions.
HarnessBridge from coding-agent CLIs into the control plane.
Pydantic schema in, typed structured output out

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.