Full Environment
Not just code — the database, installed packages, services, and system configuration are all checkpointed together.
Fork & Scale your agent's entire environment. Prepare one baseline, open parallel boxes across your org, and test changes in isolated branches.
CLI-First
# Freeze one prepared repo baseline $ sys9 run snap fork --from-box app-base Forked: s8p4fork1 (41ms) # Open parallel boxes from the same snap $ sys9 run box create agent-fix-login --snap s8p4fork1 Box created: agent-fix-login $ sys9 run box create agent-write-tests --snap s8p4fork1 Box created: agent-write-tests $ sys9 run box create agent-repro-bug --snap s8p4fork1 Box created: agent-repro-bug # Run work inside one branch $ sys9 run box exec agent-write-tests npm test -- login PASS login.spec.ts
Not just code — the database, installed packages, services, and system configuration are all checkpointed together.
Fork one prepared environment, then open parallel boxes from the same snap for agent tasks, test shards, or database branches.
Boxes wake when used, sleep when idle, and the platform adds runtime capacity as your org fans out work.