Metadata-Version: 2.4
Name: clayengine
Version: 0.1.0
Summary: Python SDK scaffold for Clay Engine runtime and editor automation.
Project-URL: Homepage, https://clayengine.ai
Project-URL: Documentation, https://docs.clayengine.ai
Project-URL: Repository, https://github.com/clayengine/clay
Author-email: Andrew DiZenzo <andrewdizenzojhu@gmail.com>
License: MIT
License-File: LICENSE
Keywords: automation,clayengine,engine,sdk
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT 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: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# clayengine

`clayengine` is the future Python SDK for Clay Engine runtime and editor automation.

Version `0.1.0` is a name-claim scaffold. It intentionally ships only package metadata and a tiny version API while Clay Engine's public local automation protocol is still being defined.

## Install

```bash
pip install clayengine
```

## Usage

```python
import clayengine

print(clayengine.version())
```

## Status

The runtime/editor automation client API will land after the public protocol, session model, and transport are versioned and shipped.

## Local Development

```bash
uv build
uv run python -m unittest discover -s tests -v
uv publish --dry-run
```
