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 › Security & Zero-Trust
Security & Zero-Trust

Full Decision-Audit Lineage

Every control decision is traceable from actuator command back through the model, its inputs, and the code and data versions that produced it - a complete, replayable chain.

STRATEGY / SLOW ▲ ▼ MICROSECOND REAL-TIMEL7Ecosystem & Strategytelemetry ▲ control ▼open ▸L6Experience & Visualizationtelemetry ▲ control ▼open ▸L5Applications & Copilotstelemetry ▲ control ▼open ▸L4Orchestrationtelemetry ▲ control ▼open ▸L3Twin Modeling & AItelemetry ▲ control ▼open ▸L2Data Fabrictelemetry ▲ control ▼open ▸L1Control Planetelemetry ▲ control ▼open ▸L0Foundationtelemetry ▲ control ▼open ▸PHYSICAL S.M.A.R.T. GENERATOR PLANTBREEDER · HYPERION1R0 1.2 m · A 2.5 · 16.84 T · δ −0.30BURNER · TANDEM MIRROR2317 T throat · 26.49 T plug · fₙ 5.44% · DEC1 center stack + plasma · 2 high-field plug · 3 expander → direct converterCOLOR GRAMMAR strategy AI-workflow infra/data models reactor/DECLINE SEMANTICStelemetry (µs)controlKRONOS FUSION ENERGYAI-NATIVE S.M.A.R.T. GENERATORMASTER BLUEPRINTSHEET 01REV. 2026-08L0-L7 · 2 MACHINES
The AI-Native S.M.A.R.T. Generator Master Blueprint — eight layers (L0→L7), one control stack, wired to both machines. Telemetry rises in microseconds; control descends the same path.

Why lineage, not just logs

A conventional log tells you what happened. Lineage tells you why, in a form you can replay. When an autonomy layer or an operator drives a magnet ramp on the breeder or a plug-field adjustment on the burner, Kronos records not only the command but the exact model version, the sensor snapshot that fed it, the policy that authorized it, and the code and configuration hashes in effect. This is essential for a machine that makes fast decisions faster than a human can review them, and for regulators who must reconstruct events.

What a lineage record contains

python
# Each decision emits a signed, hash-linked lineage node
def record_decision(cmd, state, model, policy_id, parents):
    rec = {
      'cmd': cmd, 't': now_ns(),
      'state_hash': sha384(canonical(state)),
      'model_hash': model.hash, 'policy': policy_id,
      'parents': [p.id for p in parents],       # builds the DAG
      'issuer': node.workload_id,
    }
    rec['id'] = sha384(canonical(rec))
    rec['sig'] = node.sign(rec['id'])
    append_immutable(rec)                         # to the audit log
    return rec

Replay and accountability

Because inputs are content-addressed, any decision can be re-run against the same state in the digital twin to confirm the model would produce the same output - distinguishing a model error from tampering or a hardware fault. The chain is written to the immutable audit log and exported via the data diode.

Design status: the lineage schema, DAG linking, and replay harness are implemented against the twin. On a live plant the same records would be generated at control-loop cadence; the throughput and storage design is validated in simulation, not yet under reactor operation.

Content reviewed August 2026 · design-and-simulation stage