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.

text-to-cad: AI Agent Skills for CAD, CAE, and CAM Workflows
September 24, 2026
text-to-cad is a comprehensive Python library developed by earthtojake, providing a rich set of agent skills for Computer-Aided Design (CAD), Computer-Aided Engineering (CAE), and Computer-Aided Manufacturing (CAM). It enables AI agents to generate, inspect, source, slice, and manage CAD and robot-description artifacts, streamlining complex engineering processes.

dcc-mcp-blender: AI-Driven 3D Workflows with an Embedded MCP Server
September 24, 2026
dcc-mcp-blender is a powerful Blender addon that integrates an embedded Streamable HTTP MCP server directly into Blender. This allows any MCP-compatible AI client to seamlessly control and automate your 3D modeling, animation, and rendering workflows. It offers over 200 pre-built tools and an extensible skill system for robust production environments.
Guaardvark: Your Self-Hosted AI Studio for Agents, Media, and Code
September 21, 2026
Guaardvark is a comprehensive, self-hosted AI studio designed for local execution of advanced AI tasks. It integrates coding agents, media generation (video, image, music, voice), and robust RAG capabilities, all running on a single GPU. This platform prioritizes privacy and user control, enabling a full AI workstation experience on your own hardware.

AgentsKit: The Complete JavaScript Toolkit for Building AI Agents
September 20, 2026
AgentsKit is a comprehensive JavaScript toolkit designed for building AI agents, offering a lightweight core and a modular ecosystem. It provides essential components like UIs, autonomous runtime, tools, memory, and RAG, enabling developers to create sophisticated agents from simple chat interfaces to complex autonomous systems. This framework aims to simplify agent development by offering composable parts and avoiding the need to glue multiple incompatible libraries together.
Source repository
Open the original repository on GitHub.
27 counted GitHub visits