Metadata-Version: 2.4
Name: arc-sdk
Version: 1.2.1
Summary: Python implementation of the Agent Remote Communication (ARC) Protocol
Home-page: https://github.com/arcprotocol/python-sdk
Author: Moein Roghani
Author-email: Moein Roghani <moein.roghani@proton.me>
License: Apache-2.0
Project-URL: Homepage, https://arc-protocol.org
Project-URL: Documentation, https://docs.arc-protocol.org
Project-URL: Repository, https://github.com/arcprotocol/python-sdk
Project-URL: Bug Tracker, https://github.com/arcprotocol/python-sdk/issues
Project-URL: Protocol Specification, https://arc-protocol.org/spec
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Environment :: Web Environment
Classifier: Environment :: Console
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Communications
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: System :: Distributed Computing
Classifier: Topic :: System :: Networking
Classifier: Typing :: Typed
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pydantic>=2.0.0
Requires-Dist: httpx>=0.25.0
Requires-Dist: fastapi>=0.104.0
Requires-Dist: uvicorn[standard]>=0.24.0
Requires-Dist: jsonschema>=4.19.0
Requires-Dist: authlib>=1.2.0
Requires-Dist: python-jose[cryptography]>=3.3.0
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: typer>=0.9.0
Provides-Extra: server
Requires-Dist: fastapi>=0.104.0; extra == "server"
Requires-Dist: uvicorn[standard]>=0.24.0; extra == "server"
Provides-Extra: client
Requires-Dist: httpx>=0.25.0; extra == "client"
Provides-Extra: fastapi
Requires-Dist: fastapi>=0.104.0; extra == "fastapi"
Provides-Extra: starlette
Requires-Dist: starlette>=0.27.0; extra == "starlette"
Provides-Extra: all
Requires-Dist: fastapi>=0.104.0; extra == "all"
Requires-Dist: starlette>=0.27.0; extra == "all"
Requires-Dist: uvicorn[standard]>=0.24.0; extra == "all"
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
Requires-Dist: black>=23.0.0; extra == "dev"
Requires-Dist: flake8>=6.0.0; extra == "dev"
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# Agent Remote Communication (ARC) Protocol - Multi-Agent Communication Revolution

[![PyPI version](https://badge.fury.io/py/arc-sdk.svg)](https://badge.fury.io/py/arc-sdk)
[![License: Apache 2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
[![Downloads](https://pepy.tech/badge/arc-sdk)](https://pepy.tech/project/arc-sdk)
[![GitHub stars](https://img.shields.io/github/stars/arcprotocol/python-sdk.svg?style=social&label=Star)](https://github.com/arcprotocol/python-sdk)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

## 🚀 **Advanced Agent-to-Agent Communication Protocol**

> **ARC (Agent Remote Communication)** is a next-generation agent-to-agent protocol that solves multi-agent deployment complexity with built-in agent routing, workflow tracing, and SSE streaming. Deploy hundreds of different agent types on a single endpoint with zero infrastructure overhead.

### **🏗️ Flexible Server Architecture**
**Single package, multiple deployment options** - choose the approach that fits your infrastructure:
- **🔧 Custom ASGI Server** - Standalone server with built-in middleware (zero dependencies)
- **⚡ FastAPI Integration** - Router for existing FastAPI applications (optional: `pip install arc-sdk[fastapi]`)
- **🪶 Starlette Integration** - Lightweight ASGI toolkit integration (optional: `pip install arc-sdk[starlette]`)

### **🎯 Protocol Advantages Over A2A & ACP:**
- **🏗️ Single Endpoint, Multiple Agents** - Deploy 10s or 100s of agents behind `https://company.com/arc`
- **⚖️ Built-in Load Balancing** - Route to `finance-agent-01`, `finance-agent-02`, `finance-agent-03` automatically  
- **🔄 Cross-Agent Workflows** - Agent A → Agent B → Agent C with full traceability via `traceId`
- **🎯 Agent-First Design** - Purpose-built for agent communication with native routing
- **📡 Unified Agent Management** - No service discovery, no API gateways, no orchestration engines required
- **🔍 End-to-End Tracing** - Track complex workflows across multiple agent interactions
- **⚡ Zero Infrastructure Overhead** - Single deployment handles all agent types
- **🔧 Flexible Server Architecture** - Custom ASGI, FastAPI, or Starlette integration

### **🆚 ARC vs Other Agent-to-Agent Protocols:**

| Feature | **ARC Protocol** | **A2A (Google)** | **ACP (IBM/Linux Foundation)** |
|---------|------------------|-------------------|--------------------------------|
| **Streaming Model** | ✅ SSE (Server-Sent Events) | ✅ SSE downstream | ⚠️ Chunked HTTP, not duplex |
| **Transport** | ✅ HTTP/1.1 + SSE | ✅ HTTP/1.1 + SSE | ❌ HTTP/1.x only |
| **Message Format** | ✅ JSON with structured parts | ✅ JSON with parts | ✅ JSON with MIME parts |
| **Task Lifecycle** | ✅ Native task methods + webhooks | ⚠️ SSE + webhook registration | ⚠️ Client polling/resume |
| **Multi-Agent Routing** | ✅ Single endpoint, built-in | ✅ Agent Card discovery | ⚠️ Manifest-based, looser |
| **Agent Discovery** | ✅ Built-in agent routing | ✅ Agent Card system | ⚠️ Manifest-based discovery |
| **Error Handling** | ✅ Rich error taxonomy (500+ codes) | ⚠️ JSON-RPC error codes | ⚠️ HTTP status codes |
| **Workflow Tracing** | ✅ Native `traceId` support | ⚠️ Custom implementation | ⚠️ Custom implementation |
| **Learning Curve** | ✅ Simple RPC-style | ✅ Familiar JSON-RPC | ✅ REST-like HTTP |
| **Governance** | ✅ Open Protocol | ⚠️ Google-led | ✅ Linux Foundation |

## 📦 **Quick Start**

### Installation Options

**Core Package (Custom ASGI Server):**
```bash
pip install arc-sdk
```

**With FastAPI Integration:**
```bash
pip install arc-sdk[fastapi]
```

**With Starlette Integration:**
```bash
pip install arc-sdk[starlette]
```

**All Framework Integrations:**
```bash
pip install arc-sdk[all]
```

### 🔥 **30-Second Multi-Agent Demo**

```python
from arc import ARCClient

# Create ARC client
client = ARCClient("https://company.com/arc", token="your-oauth2-token")

# Step 1: User requests document analysis
task_response = await client.task.create(
    target_agent="document-analyzer-01",
    initial_message={"role": "user", "parts": [{"type": "TextPart", "content": "Analyze quarterly report"}]},
    trace_id="workflow_quarterly_report_789"  # 🔍 Workflow tracking
)

# Step 2: Document agent automatically calls chart generator
chart_response = await client.task.create(
    target_agent="chart-generator-01", 
    initial_message={"role": "agent", "parts": [{"type": "DataPart", "content": "{\"revenue\": 1000000}"}]},
    trace_id="workflow_quarterly_report_789"  # 🔍 Same workflow ID!
)

# Step 3: Real-time chat with customer support agent
chat = await client.chat.start(
    target_agent="support-agent-01",
    initial_message={"role": "user", "parts": [{"type": "TextPart", "content": "Help with account"}]}
)
```

### 🏗️ **Architecture: Single Endpoint, Infinite Agents**

```
https://company.com/arc  ← Single endpoint for everything
├── finance-analyzer-01, finance-analyzer-02    (Load balanced)
├── document-processor-03, document-processor-04
├── chart-generator-05
├── customer-support-06
└── report-writer-07
```

## 🎯 **Core Methods - Simple but Powerful**

### **📋 Task Methods (Asynchronous)**
Perfect for long-running operations like document analysis, report generation:

```python
# Create task
task = await client.task.create(target_agent="doc-analyzer", initial_message=msg)

# Send additional input (when agent needs more info)
await client.task.send(task_id="task-123", message=additional_msg)

# Get results
result = await client.task.get(task_id="task-123")

# Cancel if needed
await client.task.cancel(task_id="task-123")

# Subscribe to notifications
await client.task.subscribe(task_id="task-123", webhook_url="https://myapp.com/hooks")
```

### **💬 Chat Methods (Real-time)**
Perfect for interactive chat, live assistance, collaborative editing:

```python
# Start real-time conversation
chat = await client.chat.start(target_agent="chat-agent", initial_message=msg)

# Continue conversation
await client.chat.message(chat_id="chat-456", message=followup_msg)

# End when done
await client.chat.end(chat_id="chat-456")
```

### **🔔 Notification Methods (Server-initiated)**
Agents push updates back automatically:

```python
# Agents send task progress notifications
await client.task.notification(task_id="task-123", event="TASK_COMPLETED", data={...})

# Agents can stream real-time responses
await client.chat.message(chat_id="chat-456", message=response_msg, stream=True)
```

## 🔐 **Enterprise Security & OAuth2**

ARC uses industry-standard OAuth2 with agent-specific scopes:

```python
# Requesting agents (initiate work)
scopes = ["arc.task.controller", "arc.chat.controller", "arc.agent.caller"]

# Processing agents (receive work, send notifications)  
scopes = ["arc.task.notify", "arc.chat.receiver", "arc.agent.receiver"]

# Full-service agents (can do both)
scopes = ["arc.task.controller", "arc.task.notify", "arc.chat.controller", "arc.chat.receiver", "arc.agent.caller", "arc.agent.receiver"]
```

## 🌟 **Real-World Examples**

### **📊 Multi-Agent Financial Analysis**
```python
# Router agent orchestrates entire workflow
trace_id = "financial_analysis_Q4_2024"

# 1. Extract data from documents
doc_task = await client.task.create(
    target_agent="document-extractor-01",
    initial_message={"role": "user", "parts": [{"type": "FilePart", "content": "base64pdf..."}]},
    trace_id=trace_id
)

# 2. Generate charts from extracted data  
chart_task = await client.task.create(
    target_agent="chart-generator-01",
    initial_message={"role": "agent", "parts": [{"type": "DataPart", "content": extracted_data}]},
    trace_id=trace_id  # Same workflow!
)

# 3. Write executive summary
summary_task = await client.task.create(
    target_agent="report-writer-01", 
    initial_message={"role": "agent", "parts": [{"type": "TextPart", "content": "Create summary"}]},
    trace_id=trace_id  # All connected!
)
```

### **🎧 Real-time Customer Support**
```python
# Start customer conversation
support_chat = await client.chat.start(
    target_agent="tier1-support-agent",
    initial_message={"role": "user", "parts": [{"type": "TextPart", "content": "My account is locked"}]}
)

# Agent can escalate to specialist
if needs_escalation:
    specialist_chat = await client.chat.start(
        target_agent="account-security-specialist", 
        initial_message={"role": "agent", "parts": [{"type": "TextPart", "content": "Escalated case: account lockout"}]}
    )
```

## 🏗️ **Server Deployment Options**

The ARC SDK provides **three flexible deployment approaches** to fit your infrastructure needs:

### **1. Custom ASGI Server (Built-in)**
Our **custom ASGI implementation** provides a complete, standalone server with built-in middleware:

```python
from arc.server import create_server

# Create multi-agent server with built-in features
server = create_server(
    server_id="my-arc-server",
    enable_chat_manager=True,
    enable_cors=True,
    enable_auth=True
)

@server.agent_handler("finance-agent", "chat.start")
async def handle_finance_chat(params, context):
    return {"type": "chat", "chat": {...}}

# Run standalone server
server.run(host="0.0.0.0", port=8000)
```

### **2. FastAPI Integration**
Integrate ARC into **existing FastAPI applications** using our router:

```python
from fastapi import FastAPI
from arc.fastapi import ARCRouter

# Your existing FastAPI app
app = FastAPI()
app.add_middleware(CORSMiddleware, ...)  # Your middleware
app.add_middleware(AuthMiddleware, ...)  # Your auth

# Add ARC router
arc_router = ARCRouter(enable_chat_manager=True, chat_manager_agent_id="server")

@arc_router.agent_handler("finance-agent", "chat.start")
async def handle_finance_chat(params, context):
    return {"type": "chat", "chat": {...}}

# Mount ARC router into your app
app.include_router(arc_router, prefix="/arc")
```

### **3. Starlette Integration**
For **lightweight ASGI applications** using Starlette toolkit:

```python
from starlette.applications import Starlette
from starlette.middleware import Middleware
from arc.starlette import ARCRouter

# Lightweight Starlette app
app = Starlette(middleware=[...])  # Your middleware

# Add ARC router
arc_router = ARCRouter(enable_chat_manager=True, chat_manager_agent_id="server")

@arc_router.agent_handler("finance-agent", "chat.start")
async def handle_finance_chat(params, context):
    return {"type": "chat", "chat": {...}}

# Mount ARC router
app.mount("/arc", arc_router)
```

### **🔧 Framework Architecture**

**ASGI Stack Hierarchy:**
```
┌─────────────────┐
│    FastAPI      │ ← Full web framework with automatic docs, validation
│   (Full Stack)  │
├─────────────────┤
│   Starlette     │ ← Lightweight ASGI toolkit with routing, middleware
│  (Lightweight)  │
├─────────────────┤
│  ASGI Spec      │ ← Asynchronous Server Gateway Interface standard
│ (Foundation)    │
└─────────────────┘

ARC SDK Options:
├── Custom ASGI    ← Our own ASGI implementation (standalone)
├── FastAPI        ← Router for existing FastAPI apps  
└── Starlette      ← Router for lightweight ASGI apps
```

**Choose Your Deployment:**
- **Custom ASGI**: Standalone server, zero dependencies, built-in features
- **FastAPI**: Integrate into existing FastAPI apps, full framework features
- **Starlette**: Lightweight integration, minimal overhead, ASGI toolkit

## 🏢 **Production Deployment**

### **Docker Deployment**
```yaml
# docker-compose.yml
version: '3.8'
services:
  arc-gateway:
    image: arc-protocol/gateway:latest
    ports:
      - "443:443"
    environment:
      - ARC_OAUTH2_PROVIDER=https://auth.company.com
      - ARC_AGENT_REGISTRY=https://registry.company.com
      
  document-analyzer:
    image: company/document-analyzer:latest
    environment:
      - ARC_ENDPOINT=https://gateway/arc
      - ARC_AGENT_ID=document-analyzer-01
```

### **Load Balancing**
```python
# Multiple instances automatically load balanced
agents = [
    "finance-analyzer-01",
    "finance-analyzer-02", 
    "finance-analyzer-03"
]

# ARC automatically routes to available instance
task = await client.task.create(
    target_agent="finance-analyzer-01",  # ARC handles routing
    initial_message=analysis_request
)
```

## 📚 **Documentation**

- 📖 **[Full Documentation](https://docs.arc-protocol.org)**
- 🔧 **[API Reference](https://docs.arc-protocol.org/api)**
- 📋 **[Protocol Specification](https://arc-protocol.org/spec)**
- 🎯 **[Examples Repository](https://github.com/arcprotocol/examples)**

## 🤝 **Contributing**

We welcome contributions! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.

## 📄 **License**

Licensed under the Apache License 2.0. See [LICENSE](LICENSE) for details.

---

**🚀 Ready to revolutionize your multi-agent architecture?**

**Choose your deployment approach:**

```bash
# Standalone server (custom ASGI)
pip install arc-sdk

# FastAPI integration  
pip install arc-sdk[fastapi]

# Starlette integration
pip install arc-sdk[starlette]

# All options
pip install arc-sdk[all]
```

**Join the ARC Protocol community:** [https://arc-protocol.org](https://arc-protocol.org)
