A2A Agents
Example agent implementations for the A2A Protocol with production-ready patterns and declarative configuration.
🚀 Quick Start (New Builder API)
Create a production-ready agent in just ~30 lines of code instead of ~300!
1. Define your agent (agent.toml)
[]
= "My Agent"
= "A helpful agent"
[[]]
= "my_skill"
= "My Skill"
= "What this skill does"
2. Implement your handler
use AsyncMessageHandler;
use async_trait;
;
3. Build and run!
use AgentBuilder;
use InMemoryTaskStorage;
async
That's it! The framework handles servers, agent cards, authentication, and more.
📚 See complete Builder API documentation →
Overview
This crate provides two approaches for building agents:
✨ New: Declarative Builder API (Recommended)
- 90% less boilerplate - ~30 lines vs ~300 lines
- TOML configuration - Define agents declaratively
- Environment-aware - Built-in env var interpolation
- Type-safe - Configuration validated at load time
- Production-ready - Batteries included
Examples:
examples/minimal_agent.rs- Echo agent (~50 lines)examples/reimbursement_builder.rs- Full-featured agent
Traditional Approach
The original hexagonal architecture approach with manual wiring:
- Hexagonal Architecture: Clean separation between domain logic and adapters
- Framework Integration: Uses
DefaultRequestProcessorand storage backends - Protocol Compliance: Full A2A protocol support with HTTP and WebSocket transports
- Modern Patterns: Async/await, builder patterns, and structured error handling
Architecture
ReimbursementMessageHandler
The core business logic implementing AsyncMessageHandler:
- Processes reimbursement requests using the A2A message format
- Generates interactive forms for expense submissions
- Validates and approves reimbursement requests
- Returns structured responses with proper task states
ModernReimbursementServer
The server implementation using framework components:
- Integrates with
DefaultBusinessHandlerfor request processing - Uses
InMemoryTaskStoragefor task persistence - Configures
SimpleAgentInfowith agent capabilities - Supports both HTTP and WebSocket transports
Usage
Quick Start - Unified Demo (Recommended)
Run the complete demo with both agent backend and web frontend in a single command:
# Run everything (agent backend + web UI)
# Open your browser to http://localhost:3000
This starts:
- Agent Backend on
http://localhost:8080(HTTP) andws://localhost:8081(WebSocket) - Web Frontend on
http://localhost:3000
The frontend automatically connects to the local agent and provides an interactive interface for submitting expenses and viewing tasks.
Advanced Usage
Run specific components:
# Run only the agent backend (HTTP + WebSocket)
# Run only the web frontend (point it to an existing agent)
AGENT_HTTP_URL=http://localhost:8080
# Customize ports
# Run only HTTP transport for agent
# Enable WebSocket support in frontend
Available Endpoints
Agent Backend:
- HTTP API:
http://localhost:8080(JSON-RPC) - WebSocket:
ws://localhost:8081 - Agent Card:
http://localhost:8080/agent-card
Web Frontend:
- Main UI:
http://localhost:3000 - Task List:
http://localhost:3000/tasks - Expense Form:
http://localhost:3000/expense/new
Example Conversation
Here's an example conversation with the reimbursement agent:
-
User: "Can you reimburse me $50 for the team lunch yesterday?"
-
Agent: Returns a form
-
User: Submits the filled form
-
Agent: "Your reimbursement request has been approved. Request ID: request_id_1234567"
Current Limitations
This example implementation demonstrates the framework architecture but has simplified business logic:
- Message Processing: Basic pattern matching instead of LLM integration
- Storage: In-memory storage (framework supports SQLx for production)
- Authentication: Not implemented (framework supports Bearer/OAuth2)
- Form Processing: Simple JSON forms without complex validation
Future Enhancements
See TODO.md for the comprehensive modernization roadmap including:
- Phase 2: Production features (SQLx storage, authentication)
- Phase 3: AI/LLM integration for natural language processing
- Phase 4: Additional agent examples (document analysis, research assistant)
- Phase 5: Comprehensive testing and documentation
- Phase 6: Docker support and production deployment
Framework Features Demonstrated
- ✅ AsyncMessageHandler trait implementation
- ✅ DefaultBusinessHandler integration
- ✅ InMemoryTaskStorage for task persistence
- ✅ SimpleAgentInfo for agent metadata
- ✅ HTTP and WebSocket transport support
- ✅ Structured error handling with A2AError
- ✅ Modern async/await patterns
- ✅ Builder patterns for complex objects