Zeroboot: Sub-millisecond VM Sandboxes for AI Agents
This repository profile is provided by osrepos.com, an open source repository discovery platform.

Summary
Zeroboot is an innovative open-source project that delivers sub-millisecond VM sandboxes, primarily designed for AI agents and other applications requiring extremely fast, isolated code execution environments. It leverages copy-on-write forking and Firecracker microVMs to achieve hardware-enforced isolation with minimal overhead. This approach enables rapid, secure code execution, ideal for high-performance AI applications.
Repository Information
Topics
Click on any tag to explore related repositories
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introduction
Zeroboot is an innovative open-source project that delivers sub-millisecond VM sandboxes, primarily designed for AI agents and other applications requiring extremely fast, isolated code execution environments. Built with Rust and leveraging Firecracker microVMs and KVM, Zeroboot utilizes copy-on-write forking to achieve unparalleled speed and efficiency. Each sandbox operates as a real KVM virtual machine, providing robust hardware-enforced memory isolation with minimal overhead, typically around 265KB per sandbox.
Installation
You can interact with Zeroboot through its managed API or by self-hosting the solution on any Linux machine with KVM.
To quickly try the managed API, use the following curl command:
curl -X POST https://api.zeroboot.dev/v1/exec \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer zb_demo_hn2026' \
-d '{"code":"import numpy as np; print(np.random.rand(3))"}'
For self-hosting, refer to the official documentation for detailed deployment instructions.
Examples
Zeroboot offers SDKs for popular programming languages to simplify integration.
Python SDK:
from zeroboot import Sandbox
sb = Sandbox("zb_live_your_key")
result = sb.run("print(1 + 1)")
print(result.stdout)
TypeScript SDK:
import { Sandbox } from "@zeroboot/sdk";
const result = await new Sandbox("zb_live_your_key").run("console.log(1+1)");
console.log(result.stdout);
Why use Zeroboot
Zeroboot stands out for its exceptional performance and robust isolation capabilities:
- Ultra-low Latency: Achieve VM spawn latencies as low as 0.79ms (p50) and 1.74ms (p99), significantly faster than comparable solutions.
- Resource Efficiency: Each sandbox consumes approximately 265KB of memory, making it highly scalable for numerous concurrent environments.
- Hardware-Enforced Isolation: Benefit from the security and reliability of KVM virtual machines, ensuring strong memory isolation between sandboxes.
- Ideal for AI Agents: Perfectly suited for AI applications that need to execute code quickly and securely in isolated environments without significant startup delays.
Links
Related repositories
Similar repositories that may be relevant next.

Hermes WebUI: A Powerful Web Interface for Your Autonomous AI Agent
June 1, 2026
Hermes WebUI provides a lightweight, dark-themed web application for interacting with Hermes Agent, offering full parity with the CLI experience. This self-hosted interface allows users to manage sessions, browse workspaces, and control their AI agent from any web browser or phone, enhancing accessibility and user experience. It integrates seamlessly with existing Hermes Agent setups, requiring no additional configuration.
CloakBrowser: Stealth Chromium for Unblockable Web Scraping and Automation
May 27, 2026
CloakBrowser is a powerful, open-source stealth Chromium browser engineered to bypass advanced bot detection systems. It achieves unparalleled stealth through C++ source-level fingerprint patches, making it appear as a normal browser and passing over 30 detection tests. Designed as a drop-in replacement for Playwright and Puppeteer, it simplifies web automation for AI agents, web scraping, and more.

AI Website Cloner Template: Clone Websites with AI Coding Agents
May 26, 2026
The AI Website Cloner Template is an innovative open-source project that leverages AI coding agents to reverse-engineer any website into a clean, modern Next.js codebase. It enables users to clone entire websites with a single command, extracting design tokens, assets, and reconstructing sections in parallel. This tool is ideal for platform migration, recovering lost source code, or learning web development by deconstructing live sites.

claude-code-best-practice: From Vibe Coding to Agentic Engineering with Claude
May 26, 2026
The `claude-code-best-practice` repository offers a comprehensive guide to mastering Claude Code, transitioning developers from 'vibe coding' to efficient agentic engineering. It compiles essential best practices, structured workflows, and expert tips to maximize productivity and leverage Claude's advanced AI capabilities. This resource is invaluable for anyone looking to optimize their AI-driven development processes.
Source repository
Open the original repository on GitHub.