Metadata-Version: 2.4
Name: agentoath
Version: 0.0.1
Summary: The open protocol for AI agent identity, trust, and notarization.
Author-email: AgentOath Protocol Team <sjl75050101@gmail.com>
License: Apache-2.0
Project-URL: Homepage, https://agentoath.ai
Project-URL: Repository, https://github.com/sjl75050101-netizen/agentoath
Project-URL: Documentation, https://agentoath.ai/docs
Keywords: ai,agent,trust,identity,notarization,ed25519,protocol
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software 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: Programming Language :: Python :: 3.13
Classifier: Topic :: Security :: Cryptography
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# AgentOath

> The open protocol for AI agent identity, trust, and notarization.

## Status

This package is under active development. The protocol specification is available at [agentoath.ai](https://agentoath.ai).

## What is AgentOath?

AgentOath is an open cryptographic protocol that gives every AI Agent a verifiable identity, tamper-proof interaction history, and a trust score derived from signed receipts.

Think of it as **SSL certificates for AI Agents**.

## Installation

```bash
pip install agentoath
```

## Quick Start

> SDK is under development. The following shows the target API.

```python
from agentoath import TrustAgent, TrustReceipt

# Create an Agent identity
agent = TrustAgent.create(
    name="My AI Assistant",
    capabilities=["chat", "search"],
)

# Sign a trust receipt after interaction
receipt = agent.sign_receipt(
    to_agent="did:trust:agent:bbb...",
    action="collaboration",
    rating=9,
)

# Verify a receipt
is_valid = TrustReceipt.verify(receipt_json)
```

## Links

- Website: [agentoath.ai](https://agentoath.ai)
- GitHub: [github.com/sjl75050101-netizen/agentoath](https://github.com/sjl75050101-netizen/agentoath)
- Architecture: [docs/architecture.md](https://github.com/sjl75050101-netizen/agentoath/blob/main/docs/architecture.md)

## License

Apache 2.0
