commit 7312d34a03006c15267c0c6945a18092694a18e4 Author: Markus Maiwald Date: Tue Jan 6 03:37:53 2026 +0100 feat(kernel): implement System Truth Ledger and Causal Trace - Implemented System Ontology (SPEC-060) and STL (SPEC-061) in Zig HAL - Created Nim bindings and high-level event emission API - Integrated STL into kernel boot sequence (SystemBoot, FiberSpawn, CapGrant) - Implemented Causal Graph Engine (SPEC-062) for lineage tracing - Verified self-aware causal auditing in boot logs - Optimized Event structure to 58 bytes for cache efficiency diff --git a/nipbox-shell.kdl b/nipbox-shell.kdl new file mode 100644 index 0000000..2b84c46 --- /dev/null +++ b/nipbox-shell.kdl @@ -0,0 +1,26 @@ +// recipes/nipbox/nipbox-shell.kdl +// Multi-call binary with echo/cat/ls/cp, linked to libnexus.a. + +package "nipbox-shell" { + version "0.1.0" + description "Sovereign Userland Shell" + + binary "nipbox" { + source "src/nipbox.nim" + type "multicall" + + commands { + cmd "echo" + cmd "cat" + cmd "ls" + cmd "cp" + cmd "mv" + cmd "rm" + } + + link { + library "libnexus.a" + static true + } + } +} diff --git a/nipbox-variants.kdl b/nipbox-variants.kdl new file mode 100644 index 0000000..5175c2d --- /dev/null +++ b/nipbox-variants.kdl @@ -0,0 +1,32 @@ +// recipes/nipbox/nipbox-variants.kdl +// USE flags for minimal/desktop modes. + +variants "nipbox-profiles" { + + profile "minimal" { + description "Minimal command-line environment" + use { + gui false + network true + ipv6 false + debug false + } + packages { + include "nipbox-shell" + } + } + + profile "desktop" { + description "Full desktop environment support" + use { + gui true + wayland true + opengl true + audio true + } + packages { + include "nipbox-shell" + include "nexbox/nexbox-desktop" + } + } +}