Metadata-Version: 2.4
Name: agentic-evolve
Version: 0.1.0
Summary: Pattern library for AI agents
Project-URL: Homepage, https://github.com/agentralabs/agentic-evolve
Project-URL: Documentation, https://github.com/agentralabs/agentic-evolve/tree/main/docs
Project-URL: Repository, https://github.com/agentralabs/agentic-evolve
Author: Agentra Labs
License-Expression: MIT
Keywords: agents,ai,evolve,mcp,pattern
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 :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.10
Provides-Extra: dev
Requires-Dist: pytest-cov>=5.0; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Description-Content-Type: text/markdown

# AgenticEvolve Python SDK

Pattern library for AI agents -- store, match, and crystallize verified code patterns for reuse.

## Install

```bash
pip install agentic-evolve
```

## Usage

```python
from agentic_evolve import EvolveStore

es = EvolveStore("project.evolve")
es.store_pattern("error-handler", language="python", body="try/except with logging")
es.match_pattern("error handling")
es.crystallize()
```

Requires the `evolve` CLI binary on PATH. Install via:

```bash
curl -fsSL https://agentralabs.tech/install/evolve | bash
```
