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

Software Bill of Materials and Build Provenance

Every deployed artifact carries a complete bill of materials and verifiable build provenance, so what runs on the plant is traceable to reviewed source.

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.

Know exactly what is running

You cannot defend what you cannot enumerate. A Software Bill of Materials (SBOM) lists every component and dependency in an artifact, with versions and hashes. Build provenance (in the SLSA sense) records how that artifact was produced - which source commit, which builder, under what conditions - and signs the attestation. Together they let Kronos confirm that a control binary or ML model corresponds to reviewed, unmodified source before it is admitted to OT.

What the provenance chain asserts

python
# Admission control: reject artifacts without matching provenance
def admit(artifact):
    prov = artifact.provenance
    if not verify_sig(prov, builder_root):        return DENY
    if prov.source_commit not in approved_commits: return DENY
    if sha384(artifact.bytes) != prov.subject_hash: return DENY
    for dep in artifact.sbom:
        if dep.hash not in allowed_components:      return DENY  # no surprises
    return ADMIT

Feeding runtime trust

The SBOM and provenance are what firmware signing and attestation ultimately vouch for: the signature at boot is only meaningful because the signed thing has a known, reviewed origin. Provenance also enables fast response to a newly disclosed vulnerability - Kronos can query which deployed artifacts include the affected component.

Design status

SBOM generation, provenance attestation, and admission control run in the Kronos build pipeline and against the twin's deployment path. Extending this to every FOAK hardware firmware image is part of the 2027 build-out; the pipeline exists today, the reactor it will gate does not.

Content reviewed August 2026 · design-and-simulation stage