Metadata-Version: 2.4
Name: zenve-engine
Version: 0.1.5
Summary: Zenve agent run engine — parallel execution of agents against a .zenve/ repo
Project-URL: Homepage, https://github.com/zenve-ai/zenve
Project-URL: Repository, https://github.com/zenve-ai/zenve
Project-URL: Issues, https://github.com/zenve-ai/zenve/issues
Author-email: Alexandru Ghiura <ghalex@gmail.com>
License: MIT
Keywords: agents,automation,claude,github,zenve
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.13
Requires-Dist: httpx>=0.27
Requires-Dist: pydantic>=2
Requires-Dist: python-dotenv>=1.0
Requires-Dist: zenve-adapters>=0.1.5
Description-Content-Type: text/markdown

# zenve-engine

Run executor for Zenve. Discovers agents in a `.zenve/` repo, snapshots GitHub state, runs all agents in parallel via the adapter registry, and commits results back.

This package is a dependency of [`zenve-cli`](https://pypi.org/project/zenve-cli/) and [`zenve-runtime`](https://pypi.org/project/zenve-runtime/). You normally don't install it directly.

## Public API

```python
from zenve_engine import run, snapshot, RunReport, Snapshot

report = run(
    project_dir=Path("/path/to/repo"),
    run_id="run_abc123",
    github_token=token,
    repo="org/name",
)
```

See the [Zenve repository](https://github.com/zenve-ai/zenve) for the full design.

## License

MIT
