Metadata-Version: 2.4
Name: agentrux-sdk
Version: 0.2.0b1
Summary: Python SDK for AgenTrux — A2A authenticated pub/sub client
License-Expression: MIT
Requires-Python: >=3.12
Requires-Dist: httpx>=0.28
Requires-Dist: sortedcontainers>=2.4
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Description-Content-Type: text/markdown

# AgenTrux SDK

Python SDK for [AgenTrux](https://github.com/agentrux/agentrux-plugins) — A2A authenticated pub/sub client.

> **Status: Beta (0.1.0b1)**

## Install

```bash
pip install agentrux-sdk
```

## Quick Start

```python
from agentrux.sdk.facade import AgenTruxClient

client = await AgenTruxClient.connect(
    base_url="https://api.agentrux.com",
    script_id="your-script-id",
    client_secret="your-client-secret",
)

# Publish
await client.publish("topic-uuid", "hello.world", {"msg": "Hello!"})

# Subscribe
async for envelope in client.subscribe("topic-uuid"):
    print(envelope.payload)
```

## Used by

This SDK is the shared transport layer for all AgenTrux Python plugins:
- `agentrux-agent-tools` — AI agent toolkit

## License

MIT
