Skip to content
Technology How it works Breeder — Hyperion Burner — Aegis Burner — MetroVolt AI-Native Architecture Magnets Fuel cycle Safety Roadmap
Solutions AI & Data Centers Defense & Government Grid & Baseload Neutron Detection Quantum
Learn Technical Library
Proof Publications Whitepapers Technical Library Open Science & Reproducibility The Honest Gates
Company About / Mission Leadership Environment Health & Safety Investors Careers Press Contact
3D Model
AI Architecture › L5 · Applications & Copilots
L5 · Applications & Copilots

Guardrails: Action Authorization Through L4

Every side-effecting proposal from L5 passes through L4 orchestration, which checks envelope, authority, and rate limits before anything reaches L1.

THE STACK · click to jumpL7Ecosystem & StrategyL6Experience & VisualizationL5Applications & CopilotsL4OrchestrationL3Twin Modeling & AIL2Data FabricL1Control PlaneL0Foundation▲tlmctl▼L5 · APPLICATIONS & COPILOTSAgentic copilots that reason over the machine.1Plasma Copilotscenario design2Engineering Copilotsubsystem analysis3Operations Copilotrunbooks & procedures4Agentic Toolsbounded action-taking5Knowledge BaseRAG over the fabric6Guardrailssafety-boundedMACHINE TIEReads the twin and fabric; proposes actions that route through L4.KRONOS FUSION ENERGYAI-NATIVE S.M.A.R.T. GENERATORAPPLICATIONS & COPILOTSSHEET 07REV. 2026-08L5 · AI-NATIVE STACK
L5 · Applications & Copilots — its place in the stack (left, click any layer) and its internal components (right). Telemetry rises; control descends.

L4 is the gate, not the copilot

A copilot can compose a proposal, but it cannot authorize it. Authorization is the job of L4 orchestration, a deterministic layer between the reasoning copilots (L5) and the control plane (L1). Every propose-class action is submitted to L4, which independently checks it against the certified safe operating envelope, the operator's authority, rate and concurrency limits, and machine mode before it may be forwarded to L1 for execution.

The authorization pipeline

text
authorize(proposal, operator, state):
  if not schema_valid(proposal):        return DENY('malformed')
  if not envelope_contains(state+proposal): return DENY('envelope')
  if not operator.authority >= proposal.level: return DENY('authority')
  if rate_limit_exceeded(proposal):     return DENY('rate')
  if machine_mode incompatible:         return DENY('mode')
  if proposal.side_effect and not human_confirmed: return HOLD
  return FORWARD_TO_L1(proposal)        # L1 still owns execution

Independent of the model

The authorization checks are deterministic code, independent of the language model that produced the proposal. A copilot cannot talk L4 into approving an unsafe action; L4 re-derives envelope membership from the full current state rather than trusting the copilot's assertion that a proposal is safe. This is the core of defense in depth — the reasoning layer can be creative because the authorization layer is rigid.

Only after L4 authorizes does an action reach L1, which owns execution and retains its own interlocks and the autonomous hardware failsafe. There are thus three independent barriers between a copilot's idea and the plant: schema validation, L4 authorization, and L1/hardware interlocks. Every decision — approve, hold, deny — is logged for audit. See envelope checks and refusal and escalation.

Content reviewed August 2026 · design-and-simulation stage