Metadata-Version: 2.4
Name: clawdepl
Version: 0.1.0
Summary: Create and manage OpenClaw AI Agent orchestrator instances
Author-email: clawdepl <hello@clawdepl.dev>
License-Expression: MIT
Project-URL: Homepage, https://github.com/clawdepl/clawdepl
Project-URL: Documentation, https://github.com/clawdepl/clawdepl#readme
Project-URL: Repository, https://github.com/clawdepl/clawdepl.git
Project-URL: Issues, https://github.com/clawdepl/clawdepl/issues
Keywords: openclaw,ai,agents,orchestrator,cli,clawdepl
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
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 :: Build Tools
Classifier: Topic :: System :: Systems Administration
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx>=0.24.0
Dynamic: license-file

# clawdepl

Create and manage OpenClaw AI Agent orchestrator instances from the command line.

This is the PyPI distribution of clawdepl. For full documentation, see the [main repository](https://github.com/clawdepl/clawdepl).

## Quick Start (No Install)

```bash
pipx run clawdepl init my-project
```

## Installation

```bash
pip install clawdepl
```

Or with pipx for isolated installation:

```bash
pipx install clawdepl
```

## Usage

```bash
# Create a new OpenClaw project
clawdepl init my-project

# Deploy to hosted infrastructure
clawdepl deploy

# Check instance status
clawdepl status

# Get help
clawdepl --help
```

## How It Works

This package is a thin wrapper around the clawdepl Go binary. On first run, it automatically downloads the appropriate binary for your platform from GitHub Releases and caches it locally.

Supported platforms:
- Linux (x64, arm64)
- macOS (x64, arm64)
- Windows (x64, arm64)

## Environment Variables

- `CLAWDEPL_BINARY_PATH`: Override the path to the clawdepl binary

## Requirements

- Python 3.8+
- httpx (installed automatically)

## License

MIT - see [LICENSE](https://github.com/clawdepl/clawdepl/blob/main/LICENSE)
