Metadata-Version: 2.4
Name: aurekai
Version: 0.8.0a2
Summary: Python bridge for Aurekai, the operating fabric for intelligent work.
Project-URL: Homepage, https://github.com/aurekai/aurekai
Project-URL: Repository, https://github.com/aurekai/aurekai
Project-URL: Issues, https://github.com/aurekai/aurekai/issues
Author: Aurekai
License-Expression: Apache-2.0
Keywords: ai,artifacts,model-memory,proof,runtime,semantic-cache
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# aurekai

Thin Python bridge for Aurekai, the operating fabric for intelligent work.

## Install

```bash
python3 -m pip install aurekai
python3 -m aurekai --version
```

## Commands

```bash
python3 -m aurekai --version
python3 -m aurekai doctor
python3 -m aurekai manifest ./aurekai.manifest.json
```

## Python API

```python
from aurekai import artifact_uri, validate_manifest

manifest = validate_manifest("./aurekai.manifest.json")
print(manifest["schema_version"])
print(artifact_uri("sha256:deadbeef"))
```

The package validates Aurekai deployment manifests and can shell out to the
installed `akai` CLI for runtime health checks.