Metadata-Version: 2.4
Name: veradata-agentkit-provider
Version: 1.0.0
Summary: AgentKit action provider for VeraData — LATAM sanctions/KYB screening for autonomous AI agents, paid via x402 on Base
Author-email: VeraData <iv@veradata.dev>
License: MIT
Project-URL: Homepage, https://veradata.dev
Project-URL: Documentation, https://api.veradata.dev/llms.txt
Keywords: agentkit,x402,coinbase,ai-agent,compliance,sanctions,latam,web3
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: coinbase-agentkit>=0.5.0
Requires-Dist: httpx>=0.27.0
Requires-Dist: pydantic>=2.0.0

# veradata-agentkit-provider

AgentKit action provider for [VeraData](https://veradata.dev) — verified LATAM
data for autonomous AI agents. Lets any AgentKit-powered agent screen a person
or company against global sanctions lists **before** transacting with them,
and pays autonomously via [x402](https://x402.org) — no human in the loop,
no API key, no subscription.

**Independent, standalone package.** Not part of the official
[coinbase/agentkit](https://github.com/coinbase/agentkit) monorepo.

## What it checks

Screens against OFAC SDN, UN Consolidated, EU Consolidated, and UK HM Treasury
lists (59,000+ entries, updated daily). Returns a `risk_score` (0.0–1.0), a
`risk_category`, and an EU AI Act Art.13 compliant SHA-256 audit hash.

## Install

```bash
pip install veradata-agentkit-provider
```

## Usage

```python
from coinbase_agentkit import AgentKit, AgentKitConfig
from veradata_agentkit_provider import veradata_action_provider

agent_kit = AgentKit(AgentKitConfig(
    wallet_provider=wallet_provider,
    action_providers=[
        veradata_action_provider(),
        # ... your other action providers
    ],
))
```

Once registered, your agent gains a `screen_sanctions` action:

```
screen_sanctions(name="Juan Perez", country="CO", type="person")
```

## Cost

$0.05 USDC per check, on Base mainnet, paid automatically via x402.

## Related

- [`sentinel-agentkit-provider`](https://pypi.org/project/sentinel-agentkit-provider/)
  — pre-execution transaction safety oracle (a sister product on the same stack).

## License

MIT
