Metadata-Version: 2.4
Name: pphermes
Version: 1.0.0
Summary: One-click launch of Hermes Agent on 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

# PPHermes

One-click launch of [Hermes Agent](https://github.com/anthropics/hermes) on [PPIO Agent Sandbox](https://ppio.com/docs/sandbox/overview.md).

## Install

```bash
pip install pphermes
```

**macOS / Linux:**

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

**Windows (PowerShell):**

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

## Quick Start

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

# Launch a Hermes sandbox
pphermes launch

# List sandboxes
pphermes list

# Check status
pphermes status <sandbox_id>

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

## Documentation

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