Metadata-Version: 2.4
Name: agentguard-protocol
Version: 0.0.1
Summary: AgentGuard — the governance layer for autonomous agent payments on Circle Nanopayments. (Name reserved; v0.1.0 shipping soon.)
Author: AgentGuard
License: Apache-2.0
Project-URL: Homepage, https://github.com/agentguard/agentguard
Keywords: ai-agents,payments,circle,nanopayments,arc,erc-8004,governance,policy,prompt-injection
Classifier: Development Status :: 2 - Pre-Alpha
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: Topic :: Security
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# AgentGuard

**The governance layer for autonomous agent payments on Circle Nanopayments.**

Every payment an AI agent makes passes through AgentGuard — kill switch, ERC-8004 identity, policy, anomaly detection, and Claude Haiku semantic intent analysis. Blocked attacks get logged as on-chain audit nanopayments on Arc.

This `0.0.1` release **reserves the `agentguard` name on PyPI**. The full v0.1.0 SDK is shipping shortly. Until then, install from source:

```bash
pip install git+https://github.com/agentguard/agentguard.git#subdirectory=apps/sdk/python
```

When v0.1.0 lands, three-line integration will look like:

```python
from agentguard import AgentGuard

guard = AgentGuard(
    agent_id="research-agent-v1",
    policy_file="policies/research.yaml",
    circle_wallet_id="...",
)

receipt = guard.pay(
    to_agent_id="data-vendor-agent-v1",
    amount_usdc=0.001,
    intent="buy weekly market report",
)
```

Follow the GitHub repo for release updates.

## License

Apache 2.0.
