A living threat intelligence organism whose nervous system is the Agentic OS kernel. Five AI agents observing, reasoning, and acting under a cryptographically-signed constitutional policy.
skynet/
kernel/ # Rust workspace crate — the Agentic OS kernel
dashboard/ # Next.js 15 operator UI (placeholder)
.github/
workflows/ # CI + security scans
SKYNET.md # Mission and principles
SOUL.md # Agent role definitions (SKYNET-A1 .. A5)
POLICY.md # Operating constitution (escalation, ACL, key management)
cargo check --manifest-path kernel/Cargo.toml
cargo test --manifest-path kernel/Cargo.toml
cargo run --manifest-path kernel/Cargo.tomlThe default build compiles without libOQS so CI passes on a vanilla
runner. Enable real post-quantum crypto with the pq-crypto feature:
cargo build --manifest-path kernel/Cargo.toml --features pq-crypto- Security-first at every layer. Memory safety in the kernel (Rust), microVM isolation for every external tool, policy-gated execution.
- Post-quantum by default. ML-KEM-768 (FIPS 203) for KEM, SLH-DSA (FIPS 205) for signatures. No "Q-Day" assumptions — harvest-now-decrypt- later is already active.
- Every action is a commit. Every agentic decision emits a Conventional Commit event. Auditable, diff-able, revertible.
See SKYNET.md and the architecture blueprint for full context.