Metadata-Version: 2.4
Name: PPClaw
Version: 1.11.0
Summary: One-click launch of OpenClaw sandbox environment powered by PPIO Agent Sandbox
Author-email: PPIO <hello@ppio.com>
License-Expression: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: click>=8.1
Requires-Dist: httpx>=0.25
Requires-Dist: python-dotenv>=1.0
Requires-Dist: rich>=13.0

# PPClaw

One-click launch of [OpenClaw](https://docs.openclaw.ai/) sandbox environment powered by [PPIO Agent Sandbox](https://ppio.com/docs/sandbox/overview.md).

## Install

```bash
pip install PPClaw
```

**macOS / Linux:**

```bash
curl -fsSL https://ppclaw.ppio.com/install.sh | bash
```

**Windows (PowerShell):**

```powershell
irm https://ppclaw.ppio.com/install.ps1 | iex
```

## Quick Start

```bash
# Set your API key
export PPIO_API_KEY="your-key"

# Launch a sandbox
ppclaw launch

# List sandboxes
ppclaw list

# Check status
ppclaw status <sandbox_id>

# Stop a sandbox
ppclaw stop <sandbox_id>
```

## Documentation

- [CLI Skill Reference](https://ppclaw.ppio.com/skill.md)
- [API Key Guide](https://ppio.com/docs/support/api-key)
