Metadata-Version: 2.4
Name: quick-sandbox
Version: 0.11.11
Summary: A VM harness for AI agents that works on macOS, Linux, and Windows.
License-Expression: MIT
Requires-Python: >=3.11
Requires-Dist: quicksand-core<0.12.0,>=0.11.10
Provides-Extra: agent
Requires-Dist: quicksand-agent>=0.3.7; extra == 'agent'
Provides-Extra: all
Requires-Dist: quicksand-agent>=0.3.7; extra == 'all'
Requires-Dist: quicksand-alpine-desktop>=0.7.5; extra == 'all'
Requires-Dist: quicksand-alpine>=0.7.2; extra == 'all'
Requires-Dist: quicksand-cua>=0.2.7; extra == 'all'
Requires-Dist: quicksand-image-tools>=0.3.2; extra == 'all'
Requires-Dist: quicksand-qemu>=0.4.3; extra == 'all'
Requires-Dist: quicksand-ubuntu-desktop>=0.7.5; extra == 'all'
Requires-Dist: quicksand-ubuntu>=0.7.2; extra == 'all'
Provides-Extra: alpine
Requires-Dist: quicksand-alpine>=0.7.2; extra == 'alpine'
Provides-Extra: alpine-desktop
Requires-Dist: quicksand-alpine-desktop>=0.7.5; extra == 'alpine-desktop'
Provides-Extra: cua
Requires-Dist: quicksand-cua>=0.2.7; extra == 'cua'
Provides-Extra: dev
Requires-Dist: quicksand-base-scaffold>=0.1.3; extra == 'dev'
Requires-Dist: quicksand-image-tools>=0.3.2; extra == 'dev'
Requires-Dist: quicksand-overlay-scaffold>=0.1.4; extra == 'dev'
Provides-Extra: qemu
Requires-Dist: quicksand-qemu>=0.4.3; extra == 'qemu'
Provides-Extra: ubuntu
Requires-Dist: quicksand-ubuntu>=0.7.2; extra == 'ubuntu'
Provides-Extra: ubuntu-desktop
Requires-Dist: quicksand-ubuntu-desktop>=0.7.5; extra == 'ubuntu-desktop'
Description-Content-Type: text/markdown

# Quicksand

[![PyPI](https://img.shields.io/pypi/v/quick-sandbox)](https://pypi.org/project/quick-sandbox/)
[![Docs](https://img.shields.io/badge/docs-quicksand-blue)](https://microsoft.github.io/quicksand/)
[![License: MIT](https://img.shields.io/badge/license-MIT-green)](LICENSE)

![Quicksand](docs/banner-light.png)

Quicksand is an async Python API to launch, control, and snapshot [QEMU](https://www.qemu.org) virtual machines with a particular focus on sandboxing AI agents. Quicksand provides pre-built Linux VMs for Ubuntu and Alpine distros. It works on x86_64 and ARM64 across macOS, Linux, and Windows with no root privileges, no Docker, and no system dependencies. Just `pip install quick-sandbox`.

## Installation

```bash
pip install 'quick-sandbox[qemu,alpine]'
```

Or install the core package and add QEMU/images separately:

```bash
pip install quick-sandbox
quicksand install qemu alpine
```

## Usage

### Hello, World!

```python
import asyncio
from quicksand import Sandbox

async def main():
    async with Sandbox(image="ubuntu") as sb:
        result = await sb.execute("echo 'Hello from the sandbox!'")
        print(result.stdout)

asyncio.run(main())
```

### Run commands

```python
result = await sb.execute("apt update && apt install -y python3")
print(result.stdout, result.exit_code)
```

### Mount host directories

Share host directories into the VM at boot or on the fly.

```python
# At boot
async with Sandbox(
    image="ubuntu",
    mounts=[Mount("./workspace", "/mnt/workspace")],
) as sb:
    ...

# Or dynamically on a running sandbox
handle = await sb.mount("/tmp/data", "/mnt/data")
await sb.execute("ls /mnt/data")
await sb.unmount(handle)
```

### Configure networking

Sandboxes are network-isolated by default. Opt in to internet access and port forwarding with `NetworkMode.FULL`.

```python
async with Sandbox(
    image="ubuntu",
    network_mode=NetworkMode.FULL,
    port_forwards=[PortForward(host=8080, guest=80)],
) as sb:
    ...
```

### Save and load

Save the VM's disk state to a directory. Load it later, even on a different machine.

```python
await sb.execute("pip install numpy pandas")
await sb.save("my-env")  # VM keeps running

# Load later
async with Sandbox(image="my-env") as sb:
    await sb.execute("python3 -c 'import numpy; print(numpy.__version__)'")
```


### Checkpoint and revert

Capture the full VM state and roll back if something goes wrong.

```python
await sb.checkpoint("before-experiment")
await sb.execute("apt install -y something-risky")
await sb.revert("before-experiment")  # the VM snaps back to the checkpoint
```

### Control a desktop

Desktop images provide a full Xfce4 graphical environment with a browser. Install one with `quicksand install ubuntu-desktop` or `quicksand install alpine-desktop`.

```python
async with Sandbox(image="ubuntu-desktop", enable_display=True) as sb:
    await sb.screenshot("screen.png")
    await sb.type_text("hello world")
    await sb.press_key(Key.RET)
    await sb.mouse_move(500, 300)
    await sb.mouse_click("left")
```

### Configuration

Here are all of the Sandbox configuration options:

```python
Sandbox(
    # Image or save name to boot
    image="ubuntu",
    # Guest RAM (default: "512M")
    memory="2G",
    # Virtual CPU cores (default: 1)
    cpus=4,
    # Host directories shared into the VM at boot
    mounts=[Mount("/host", "/guest")],
    # NONE, MOUNTS_ONLY (default), or FULL internet access
    network_mode=NetworkMode.FULL,
    # Forward host TCP ports into the guest
    port_forwards=[PortForward(host=8080, guest=80)],
    # Expand the guest filesystem on boot
    disk_size="10G",
    # Attach virtual GPU, keyboard, and mouse for screenshot/type_text/mouse control
    enable_display=True,
    # Auto-save VM state on stop
    save="my-save-name",
)
```

## Available images

| Image | Type | Wheel size | Install command | What is it |
|-------|------|-----------|-----------------|------------|
| `ubuntu` | Base | ~341 MB | `quicksand install ubuntu` | Ubuntu 24.04 headless |
| `alpine` | Base | ~78 MB | `quicksand install alpine` | Alpine 3.23 headless (faster boot) |
| `ubuntu-desktop` | Overlay (`ubuntu`) | ~263 MB | `quicksand install ubuntu-desktop` | Ubuntu 24.04 + Xfce4 + Firefox |
| `alpine-desktop` | Overlay (`alpine`) | ~310 MB | `quicksand install alpine-desktop` | Alpine 3.23 + Xfce4 + Chromium |
| `quicksand-agent` | Overlay (`ubuntu`) | ~304 MB | `quicksand install quicksand-agent` | Ubuntu + Python 3.12, uv, build-essential, requests, pyyaml, ddgs, markitdown |
| `quicksand-cua` | Overlay (`quicksand-agent`) | ~445 MB | `quicksand install quicksand-cua` | Agent Sandbox + Xvfb, x11vnc, noVNC, Playwright, Chromium |

## Building from source

```bash
git clone https://github.com/microsoft/quicksand.git
cd quicksand
uv sync
uv run uvr build --all-packages
```

## Documentation

| Topic | Guide | Under the Hood |
|-------|-------|----------------|
| Installation | [Installing packages](docs/user-guide/01-installation.md) | [QEMU binaries, kernels, qcow2 disks](docs/under-the-hood/01-installation.md) |
| Sandbox Lifecycle | [Creating and configuring sandboxes](docs/user-guide/02-sandbox-lifecycle.md) | [`-m`, `-smp`, `-accel`, machine types](docs/under-the-hood/02-sandbox-lifecycle.md) |
| Running Commands | [`execute()`, streaming, exit codes](docs/user-guide/03-running-commands.md) | [Kernel boot, agent tokens, `hostfwd`](docs/under-the-hood/03-running-commands.md) |
| File Exchange | [Mounts, hot-mounts, getting data in/out](docs/user-guide/04-file-exchange.md) | [CIFS via `guestfwd`, 9p via `-fsdev`](docs/under-the-hood/04-file-exchange.md) |
| Save and Rollback | [Checkpoints, reverts, persistent saves](docs/user-guide/05-save-and-rollback.md) | [qcow2 overlays, `savevm`, `blockdev-snapshot-sync`](docs/under-the-hood/05-save-and-rollback.md) |
| Desktop Control | [Screenshots, keyboard, mouse](docs/user-guide/06-desktop-control.md) | [VNC, GPU, USB tablet, QMP input injection](docs/under-the-hood/06-desktop-control.md) |
| Network and Isolation | [Network modes, port forwarding](docs/user-guide/07-network-and-isolation.md) | [SLIRP NAT, `restrict=on`, `guestfwd`](docs/under-the-hood/07-network-and-isolation.md) |
| Performance | [What makes it fast](docs/user-guide/08-performance.md) | [`io_uring`, IOThreads, TCG vs KVM](docs/under-the-hood/08-performance.md) |

### Contributing

| Guide | When to use |
|-------|------------|
| [Creating Images](docs/contributor-guide/01-creating-images.md) | Build a new base or overlay image package |
| [Extending the Sandbox](docs/contributor-guide/02-extending-the-sandbox.md) | Add a method, OS, architecture, or QEMU flag |
| [Testing](docs/contributor-guide/03-testing.md) | Run or write tests |
| [Releasing](docs/contributor-guide/04-releasing.md) | Cut a release |

Full guides: [User Guide](docs/user-guide/) | [Under the Hood](docs/under-the-hood/) | [Contributor Guide](docs/contributor-guide/)
