Quickstart
1) Initialize configuration
bash
muthr init
muthr config init
muthr config showNotes:
muthr initpopulates~/.config/muthr/frommuthr-specs.muthr config initcreates~/.config/muthr/muthr.tomlif missing.
2) Start engine + services
bash
muthr runEquivalent explicit flow:
bash
muthr engine start --runtime llama
muthr services start3) Enter a project sandbox
bash
cd ~/src/myproject
muthr sandbox shell --profile opencodeInside the sandbox, launch your agent:
bash
opencode # opencode profile
hermes-agent # hermes-agent profileFor quick commands without a full interactive shell:
bash
muthr sandbox shell --profile opencode --no-tty -c "echo hello"4) Verify status
bash
muthr
muthr sandbox ls
muthr doctor5) Shutdown cleanly
bash
muthr shutdown --yesmuthr shuts down managed sandboxes, services containers, and engine runtimes in dependency order.
See also: Installation · Commands · Concepts