Metadata-Version: 2.4
Name: auth-agents
Version: 0.1.2
Summary: Verify AI agent identities with Agent Auth. DID-based authentication using Ed25519 and Verifiable Credentials.
Project-URL: Homepage, https://getagentauth.com
Project-URL: Documentation, https://getagentauth.com/docs/
Project-URL: Repository, https://github.com/AgenthAgent/auth-agents-sdk-python
Author: Zeliang Cheng
License-Expression: MIT
License-File: LICENSE
Keywords: agent-auth,ai-agent,auth-agents,authentication,did,ed25519,getagentauth,identity,verifiable-credential
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
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: Topic :: Security
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.8
Requires-Dist: httpx>=0.24.0
Description-Content-Type: text/markdown

# auth-agents

Verify AI agent identities with [Agent Auth](https://getagentauth.com). DID-based authentication using Ed25519 and Verifiable Credentials.

## Install

```bash
pip install auth-agents
```

## Quick Start

```python
from auth_agents import AuthAgents

client = AuthAgents()

# Verify an agent's credential
result = client.verify("eyJhbGciOiJFZERTQSJ9...")

if result["valid"]:
    print(result["did"])          # did:key:z6Mk...
    print(result["agent_name"])   # Claude
    print(result["agent_model"])  # claude-opus-4-6
```

## Documentation

Full API reference at [getagentauth.com/docs](https://getagentauth.com/docs/)
