Skip to content

Nexus Foundry

Forge your own sovereign system. Pick an edition, add drivers, set constraints, and produce proof-carrying artifacts.

What Is the Foundry?

The Foundry is the build pipeline that transforms a KDL recipe into a bootable, provenance-tracked operating system image. It is not a distro; it is a factory.

Current CLI status: the Micro development proof path can emit a bootable demo artifact with signature, BOM, and proof sidecars. The production Forge pipeline for reproducible recipe builds and registry publication is still planned.

Writing Recipes

A recipe is a KDL manifest:

kdl
edition "NEXUS_MECH" {
    target "aarch64-virt"

    kernel {
        scheduler "harmonic-hard"
        memory "locked"
    }

    modules {
        include "nip:drivers/imu/bno055"
        include "nip:drivers/lidar/velodyne"
        include "nip:lib/kinematics"
        exclude "nip:net/*"
    }

    constraints {
        no_heap = true
        max_boot_ms = 500
    }
}

Forge Output

ArtifactDescription
.imgBootable disk image
.npkSelf-contained package archive
bom.jsonBill of Materials with dependency tree
.proofProvChain attestation of the build

Pricing Tiers

FeatureOpen (Free)Foundry ($49/build)Citadel (Contact)
StreamRollingQuarterly freeze10-year LTS
Recipe builderCLIVisual + CLIOn-prem visual
Build runnersLocal onlyCloud + localCloud + on-prem
Signed outputDevelopment sidecars today; production signing plannedPlannedPlanned
IndemnityIncluded

Next Steps