01
Vpod — a Linux sandbox that boots in WASM
An open-source CLI plus Python SDK that spins up a throwaway Linux sandbox to run untrusted code, built by emulating a RISC-V machine inside WebAssembly. You pull a snapshot (Alpine by default) and it boots in under a second; everything runs inside the WASM boundary with only the filesystem, network, and I/O you hand it through WASI. Reach for it when your agent wants to run code you didn't write and you'd rather not give it your actual machine — pip install vpod, Sandbox.create(), done, no daemon and no root.
Delete the "I'll just run it in a Docker container I forgot to lock down" habit, and the heavier Firecracker setup for cases where you only need process-level isolation. The tradeoff is honest: emulating a CPU in WASM means CPU-bound work runs slower than native, so this is a fence for untrusted code, not a place to do real compute. Apache-2.0, 42 stars, actively pushed.