Metadata-Version: 2.4
Name: sandbox-agent-sdk
Version: 0.1.0
Summary: Python client SDK for Sandbox Agent — universal API for automatic coding agents in sandboxes
Project-URL: Homepage, https://github.com/kevinhill/sandbox-agent-python
Project-URL: Repository, https://github.com/kevinhill/sandbox-agent-python
Author: Kevin Hill
License: Apache-2.0
Keywords: acp,agent,ai,coding,sandbox,sdk
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Requires-Dist: aiortc<2,>=1.9.0
Requires-Dist: httpx<1,>=0.27
Requires-Dist: pydantic<3,>=2.0
Requires-Dist: websockets<14,>=12.0
Description-Content-Type: text/markdown

# sandboxagent

Python client SDK for [Sandbox Agent](https://github.com/rivet-dev/sandbox-agent) — the universal API for automatic coding agents in sandboxes.

## Installation

```bash
pip install sandboxagent
```

## Quick Start

```python
import asyncio
from sandboxagent import SandboxAgent

async def main():
    agent = await SandboxAgent.connect("http://localhost:2468")
    health = await agent.health()
    print(health)
    await agent.dispose()

asyncio.run(main())
```

## Development

```bash
uv sync
uv run pytest
uv run ruff check
uv run mypy sandboxagent
```

## License

Apache-2.0
