Metadata-Version: 2.4
Name: openagp
Version: 0.0.0
Summary: Reference Python SDK for the Agent Governance Protocol (AGP)
Project-URL: Homepage, https://openagp.io
Project-URL: Repository, https://github.com/openagp/sdk-python
Project-URL: Specification, https://github.com/openagp/spec
Author: OpenAGP contributors
License: Apache-2.0
License-File: LICENSE
Classifier: Development Status :: 1 - Planning
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# openagp/sdk-python

**Reference Python SDK for AGP — vendor-side and plane-side.**

## Status

Scaffold. Implementation tracked in [§4.2 Phase 1](https://github.com/openagp/spec/blob/main/concept-and-spec.md#42-build-order--what-claude-code-should-build-first) of the spec.

## Planned API

```python
from openagp.events import Event, sign, verify
from openagp.policy import Policy, evaluate
from openagp.server import vendor_app, plane_app   # FastAPI scaffolds
from openagp.client import VendorClient, PlaneClient
```

Cross-language interop is verified in CI: events emitted by this SDK are verified by [`openagp/sdk-typescript`](https://github.com/openagp/sdk-typescript), and vice versa.

## Install

```bash
pip install openagp
```

*(Stub package reserves the name on PyPI; functional release pending Phase 1.)*

## Python support

3.10+

## License

[Apache-2.0](LICENSE).
