Deterministic workload orchestration for Cerebrium-style AI/ML inference.
Current project phase: POC v1 proved functional/resilience basics and a warm-cache nginx control-plane benchmark; POC v2 is the team-presentation gate for current-system parity plus Hivemind-native serving semantics.
core/— Zig control plane: VRR consensus, scheduler, gossip, persistence, VOPR simulationworker/— Rust node agent: containerd runtime, GPU allocation, secrets, volumes, runtime simulationapi/— Go REST/dashboard gateway over the replica binary protocoltests/— local smoke/build checksbench/— benchmark toolinginfra/— frozen/local-use deployment glue; do not touch cloud unless explicitly reopened
cd core && zig build
cd ../worker && cargo build
cd ../api && go build ./...cd core && zig test src/unit_tests.zig
cd core && zig test src/unit_tests.zig -OReleaseFast
cd core && zig build test
cd worker && cargo test --quiet
cd api && go test ./...Read these first:
docs/STATUS.md— current implementation statedocs/POC_V2_ACCEPTANCE.md— current team-presentation/replacement gatedocs/design/HIVEMIND_NATIVE_PLATFORM.md— Hivemind-native revisions/routability/rollout modeldocs/POC_ACCEPTANCE.md— POC v1 historical pass/fail checklistdocs/POC_CHANGELOG.md— dated POC progressdocs/FINDINGS_AND_ISSUES.md— production gaps and backlogdocs/ENGINEERING.md— engineering principles
Historical or aspirational material lives under docs/legacy/ and docs/frozen/. It is not authoritative when it disagrees with core/ or docs/STATUS.md.