Metadata-Version: 2.4
Name: quicksand-agent
Version: 0.4.8
Summary: Overlay image package for quicksand
License-Expression: MIT
Requires-Python: >=3.11
Requires-Dist: quicksand-core<0.12.0,>=0.11.13
Requires-Dist: quicksand-ubuntu<0.10.0,>=0.9.10
Description-Content-Type: text/markdown

# Quicksand Agent Sandbox

An overlay image package for [quicksand](https://github.com/microsoft/quicksand) that provides a Python 3.12 environment with common AI agent tools pre-installed. Built on top of `quicksand-ubuntu`.

## Installation

```bash
quicksand install quicksand-agent
```

## Usage

### Simple (recommended)

```python
import asyncio
from quicksand_agent import AgentSandbox

async def main():
    async with AgentSandbox() as sb:
        result = await sb.execute("python3 --version")
        print(result.stdout)

asyncio.run(main())
```

### With custom config

```python
from quicksand_core import Sandbox

async with Sandbox(image="quicksand-agent", memory="4G", cpus=4) as sb:
    result = await sb.execute("pip list")
```

## What's Included

Built on Ubuntu 24.04, this overlay adds:

- **Python 3.12** virtual environment at `/opt/python` (with `pip`)
- **uv** fast Python package manager
- **build-essential** (gcc, make, etc.)
- **requests** HTTP library
- **pyyaml** YAML parsing
- **ddgs** DuckDuckGo Search API
- **markitdown** Markdown conversion tool

## License

MIT
