Metadata-Version: 2.4
Name: aga-governance
Version: 0.2.1
Summary: AGA Python SDK - Cryptographic governance receipts for AI agent tool calls
Author: Attested Intelligence Holdings LLC
License-Expression: Apache-2.0
License-File: LICENSE
Keywords: agent,ai,cryptographic,governance,receipts
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Security :: Cryptography
Requires-Python: >=3.9
Requires-Dist: pynacl>=1.5.0
Description-Content-Type: text/markdown

# AGA Python SDK

Cryptographic governance receipts for AI agent tool calls.

## Install

```bash
pip install aga-governance
```

## Quick Start

```python
from aga import AgentSession

async with AgentSession(gateway_id="my-gateway") as session:
    receipt = await session.record_tool_call(
        tool_name="read_file",
        decision="PERMITTED",
        reason="allowed by policy",
        request_id="req-001",
    )
    bundle = await session.export_bundle()
```

## License

Apache-2.0. Patent Pending.
