Home · Architecture · Authority · Execution Trace · Dogma

Agentic Control Plane — Architecture

A deterministic, controller-driven execution model with explicit state transitions and strongly typed boundaries.

This page describes the core architecture of the agentic execution engine. It reflects the system as implemented — not a conceptual or aspirational design.

Architecture Overview

The system is built around a Controller with well-defined input and output contracts. The Controller is a pure, finite executor that coordinates agent calls, tool execution, and validation through an explicit state machine.

Agents are treated as untrusted. All side effects occur outside the Controller.

System Structure


Caller / API
    |
    v
+----------------------+
|      Controller      |
|  Pure FSM Executor   |
|  PLAN → WORK → TOOL  |
|        → CRITIC      |
|        → END         |
+----------------------+
    |           |
    |           v
    |      AgentDispatcher
    |      (schema + retries)
    |
    v
+----------------------+
|    ToolRegistry      |
|  Typed, deterministic|
|  external side effects
+----------------------+

(State is explicit and external)
            

Architectural Invariants

What This System Does Not Allow

Architectural Tradeoffs

Failure Modes Explicitly Handled

Production Boundary

This system is a prototype. Production deployment would require: