Microsandbox – local-first programmable micro VMs Superrad Company launched Microsandbox, a local-first programmable micro VM platform that boots lightweight virtual machines in under 100 milliseconds directly from developer code without requiring server setup or long-running daemons. The open-source tool provides hardware-level isolation, runs standard OCI container images, and offers SDKs for Rust, Python, TypeScript, and Go, enabling developers to embed rootless microVMs into their applications for agent-ready computing. —— the easiest way to give your agent their own computer —— Microsandbox spins up lightweight VMs in milliseconds from our SDKs. Runs locally on your machine. No server to set up. No lingering daemon. It is all embedded and rootless Hardware Isolation : Hardware-level isolation with microVM technology. Instant Startup : Average boot times under 100 milliseconds. Embeddable : Spawn VMs right within your code. No setup server. No long-running daemon. Secrets That Can't Leak : Unexploitable secret keys that never enter the VM. OCI Compatible : Runs standard container images from Docker Hub, GHCR, or any OCI registry. Long-Running : Sandboxes can run in detached mode. Great for long-lived sessions. Agent-Ready : Your agents can create their own sandboxes with our Agent Skills https://github.com/superradcompany/skills and MCP server https://github.com/superradcompany/microsandbox-mcp . cargo add microsandbox 🦀 Rust uv add microsandbox 🐍 Python npm i microsandbox 🟦 TypeScript go get github.com/superradcompany/microsandbox/sdk/go 🐹 Go Boot a microVM in one command. npx microsandbox run debian Or install the msb command globally: curl -fsSL https://install.microsandbox.dev | sh On macOS you can also install with Homebrew: brew install superradcompany/tap/microsandbox msb run debian Requirements: Linux with KVM enabled, or macOS with Apple Silicon. Warning: Microsandbox is stillbeta software. Expect breaking changes, missing features, and rough edges. The SDK lets you create and control sandboxes directly from your application. Sandbox::builder "..." .create boots a microVM as a child process. No infrastructure required. php use microsandbox::Sandbox; tokio::main async fn main - Result< , Box