Metadata-Version: 2.4
Name: pgns-agent
Version: 0.1.2
Summary: Wrap any agent function in a production-ready A2A server
Project-URL: Homepage, https://pgns.io
Project-URL: Documentation, https://docs.pgns.io/libraries/pgns-agent
Project-URL: Repository, https://github.com/pgns-io/pgns-agent
Author: pgns
License-Expression: Apache-2.0
License-File: LICENSE
Keywords: a2a,agents,pgns,starlette,webhooks
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Typing :: Typed
Requires-Python: >=3.11
Requires-Dist: httpx>=0.28
Requires-Dist: pgns>=0.4
Requires-Dist: starlette<1,>=0.41
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.24; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Description-Content-Type: text/markdown

# pgns-agent

Express.js for A2A agents.

[![PyPI](https://img.shields.io/pypi/v/pgns-agent)](https://pypi.org/project/pgns-agent/)
[![Python](https://img.shields.io/pypi/pyversions/pgns-agent)](https://pypi.org/project/pgns-agent/)
[![License](https://img.shields.io/badge/license-Apache--2.0-blue)](LICENSE)

Wrap any agent function in a production-ready [A2A](https://google.github.io/A2A/)-compatible server, powered by [pgns](https://pgns.io).

```python
from pgns_agent import AgentServer

agent = AgentServer("my-agent", "Echoes input")

@agent.on_task
async def handle(task):
    return {"echo": task.input}

agent.listen(3000)
```

## Quickstart

**Install:**

```bash
pip install pgns-agent
```

**Configure** (optional — omit for local dev mode):

```bash
export PGNS_API_KEY="your-api-key"
```

**Run:**

```bash
python agent.py
```

Your agent is now live. Verify the agent card at [http://localhost:3000/.well-known/agent.json](http://localhost:3000/.well-known/agent.json).

## Features

- **A2A protocol compliance** — serves the standard Agent Card at `/.well-known/agent.json`
- **Auto-provisioning** — registers an agent card and roost on the pgns relay at startup
- **Sync + async modes** — handlers are always async, but the server can run standalone or embedded
- **SSE streaming** — stream task progress updates to callers via Server-Sent Events
- **Task lifecycle** — `submitted → working → completed/failed` with full status tracking
- **Input-required flow** — suspend a handler and request additional input from the caller
- **Local dev mode** — run without a pgns API key for local development and testing

## Three entry points

**Standalone server** — start a self-contained HTTP server:

```python
agent.listen(3000)
```

**Mount into an existing app** — get a Starlette/ASGI application to compose with FastAPI, Starlette, or any ASGI framework:

```python
app = agent.app()
```

**Serverless handler** — get the raw ASGI callable for Lambda, Cloud Functions, etc.:

```python
handler = agent.handler()
```

## Framework adapters

Adapters let you wire existing agent frameworks into pgns-agent with zero glue code.

### LangChain / LangGraph

```bash
pip install pgns-agent-langchain
```

```python
from pgns_agent import AgentServer
from pgns_agent.adapters import LangChainAdapter

agent = AgentServer("my-langchain-agent", "Runs a LangChain chain")
agent.use(LangChainAdapter(my_runnable))
agent.listen(3000)
```

### OpenAI Agents SDK

```bash
pip install pgns-agent-openai
```

### Claude Agent SDK

```bash
pip install pgns-agent-claude
```

### CrewAI

```bash
pip install pgns-agent-crewai
```

## Testing

Use the built-in test client for unit testing — no server required:

```python
client = agent.test_client()
resp = client.send_task({"text": "hello"})
assert resp.status == "completed"
assert resp.result == {"echo": {"text": "hello"}}
```

## Documentation

Full documentation is available at [docs.pgns.io/libraries/pgns-agent](https://docs.pgns.io/libraries/pgns-agent).

- [API Reference](https://docs.pgns.io/libraries/pgns-agent/api)
- [GitHub](https://github.com/pgns-io/pgns-agent)

## License

Apache 2.0
