Metadata-Version: 2.4
Name: agentic-reality
Version: 0.1.0
Summary: Existential grounding for AI agents
Project-URL: Homepage, https://github.com/agentralabs/agentic-reality
Project-URL: Documentation, https://github.com/agentralabs/agentic-reality/tree/main/docs
Project-URL: Repository, https://github.com/agentralabs/agentic-reality
Author: Agentra Labs
License-Expression: MIT
Keywords: agents,ai,grounding,mcp,reality
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

# AgenticReality Python SDK

Existential grounding for AI agents -- environmental context sensing and claim grounding.

## Install

```bash
pip install agentic-reality
```

## Usage

```python
from agentic_reality import RealityStore

rs = RealityStore("project.areal")
rs.sense_context(scope="workspace")
rs.ground_claim("The build is passing", evidence="CI green")
```

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

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