Build Deterministic Worlds
Documentation, tools, and SDK for the cruxOS Foundation
npm install -g @cruxos/cli Singularity-level debugging and inspection
Step through any tick
Browse world structure
Optimize xpt usage
Test determinism
Debug rule execution
Compare world states
world "cloud-park" {
size 100x100
seed 42
agent visitor {
state energy: 100
state mood: "happy"
behavior wander when energy > 20 {
move random
energy -= 1
}
behavior rest when energy <= 20 {
wait
energy += 5
}
}
spawn visitor count 10
}same IR + same seed = same world evolution Every world is reproducible. Every outcome is traceable. Every bug is findable.