mb CLI Reference

Masterblaster (mb) is an AI agent sandbox management, build, and infrastructure tool for operators embracing safe, sandboxed agentic workflows. It manages stereOS virtual machines, bootstraps agent environments, and provides the foundation for the Paper Compute ecosystem.

Usage

mb [command]

Commands

Sandbox Lifecycle

CommandDescription
mb initCreate a jcard.toml configuration file
mb upCreate and start a sandbox
mb downStop a running sandbox
mb destroyRemove a sandbox and all its resources

Inspection

CommandDescription
mb listList all sandboxes
mb statusShow the status of a sandbox
mb sshSSH into a running sandbox

Mixtapes

CommandDescription
mb pullPull a mixtape from the registry
mb mixtapesManage stereOS mixtapes

Daemon & Other

CommandDescription
mb serveStart the Masterblaster daemon
mb versionDisplay version information

Global Flags

FlagDescription
--config-dir stringConfig directory (default: $XDG_CONFIG_HOME/mb)
--disable-telemetryDisable anonymous telemetry
-h, --helpHelp for mb
-v, --verboseEnable verbose output

Quick Start

# Initialize a new sandbox configuration
mb init

# Pull a mixtape image
mb pull coder

# Boot the sandbox
mb up

# SSH into it
mb ssh

# When done, stop and destroy
mb down
mb destroy