Architecture

Boundary Control Protocol

Stop autonomous agents from going rogue and draining session budgets.

The Boundary Control Protocol (BCP) prevents autonomous AI agents from wandering outside their defined operational mandate. Whether an agent is reading a database or triggering a financial transaction, BCP evaluates admissibility before execution.

The Admissibility Engine

Before any tool call is dispatched, the EAAP (Exogram Action Admissibility Protocol) checks the action against a deterministic state-machine. If the action violates budget limits, scope definitions, or sequential logic, it is hard-blocked.

json
{
  "action": "execute_transfer",
  "amount": 5000,
  "admissible": false,
  "reason": "Exceeds session budget block"
}
EAAP Protocol v1.0Verified Architecture