Metadata-Version: 2.4
Name: ai2human-agentkit
Version: 0.1.0
Summary: AI2Human Coinbase AgentKit integration — CDP agents dispatch human-execution tasks with proof verification.
Author: AI2Human
License: MIT
Keywords: agent,agentkit,ai2human,coinbase,human-in-the-loop
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Requires-Dist: coinbase-agentkit<1,>=0.1
Requires-Dist: httpx<1,>=0.27
Requires-Dist: pydantic<3,>=2.7
Description-Content-Type: text/markdown

# AI2Human AgentKit

Coinbase AgentKit integration for AI2Human — CDP agents can dispatch human-execution tasks with proof verification.

When your onchain agent needs a human to verify, check, review, or execute something — AI2Human dispatches it to a human operator with cryptographic proof.

## Quickstart

```bash
pip install ai2human-agentkit
```

```python
from ai2human_agentkit import ai2human_action_provider
from coinbase_agentkit import AgentKit, AgentKitConfig

agent_kit = AgentKit(AgentKitConfig(
    action_providers=[ai2human_action_provider()],
))
```

Set `AI2HUMAN_API_KEY` in your environment.

## Actions

| Action | Description |
|--------|-------------|
| `ai2human_list_categories` | List supported task categories and proof types |
| `ai2human_create_task` | Dispatch a human-execution task |
| `ai2human_check_task` | Check task status, verification, and settlement |
| `ai2human_get_proof` | Retrieve evidence bundle and settlement receipt |
