Point One Zero Platform architecturev11 · generated viewSign in to edit
Platform Layers › L2 Solution
L2 Solution
Where this layer sits on the architecture; the client plane band to its right shows the values it reads.
L2 Solution CLIENT-BLIND · KNOWLEDGE-PINNED
The working tier: one deterministic orchestrator, business agents (judgment under gates), workflows (deterministic multi-step), copilots, one skill per use case, the domain rule library, and subagent workers on bounded summary contracts.
Orchestrator: routes, validates, gates, sequences, records lineage, never authors content
Business agents own outcomes and face the gates; subagents are internal implementation
The determination rule, which decides what is built as an agent and what is built as deterministic code, governs everything in this layer. It is recorded in full in Governance, on the Decision Register page.
Client-specific configuration for this layer is specified band by band in Client Delivery, C2 spec: every input with its binding key, generated artifact, and verifying check.
Component reference
Orchestrator
The deterministic routing and control unit above all agents: validates inputs, dispatches, enforces gates, sequences the dependency graph, records lineage. It never authors content.
ImplementationA deterministic state machine on the agent runtime with a capability-to-agent routing table. Watch the God Orchestrator antipattern: orchestrator code containing a prompt template is the tell.
Business Agents
The judgment workers: each owns a business outcome, performs open-ended work under guardrails, and faces human gates.
ImplementationOne definition file per agent carrying the four-part delegation spec (objective, output format, tools and sources, boundaries); registered in the registry; permissions, evals and gates attach here and only here.
Workflows
Deterministic multi-step business logic on predefined code paths; no open-ended judgment anywhere.
ImplementationPipeline definitions, one per use case where the determination rule says code. A workflow may invoke an agent for one bounded judgment step; pattern P2 is the reference trace.
Copilots
Interactive assistance inside a human's own working session: the human drives, nothing runs unattended, no gates.
ImplementationSame skills and tool servers as agents, different control contract; pattern P4 is the reference trace.
Skills
One use case's procedure and output format, loaded only when that use case runs.
ImplementationSKILL.md per use case with scripts/, references/ and assets/ folders; the only file a new use case adds. Universal rules stay in the constitution.
Domain Rule Library
Deterministic implementations of the rules Knowledge declares: every metric computed once, cited everywhere.
ImplementationExposed to agents as thin compute tools through the south servers; fully unit-tested; it computes, validates, fetches and files, and never decides or drafts.
Subagent Workers
Workers inside one agent's boundary: drafting, citation-checking, red-teaming, fanned out in parallel.
ImplementationDefined inside their parent's definition; report through bounded summary contracts; never face a gate directly; parallelized wherever the dependency graph allows.