UNPKG

@dexwox-labs/a2a-server

Version:

TypeScript server implementation for Google's Agent-to-Agent (A2A) protocol - includes Express/WebSocket handlers, request validation and queue management

34 lines (28 loc) 758 B
/** * @module Server * @description Server implementation for the A2A protocol * * This package provides a complete server implementation for the Agent-to-Agent (A2A) protocol. * It includes an Express-based HTTP and WebSocket server, request handlers, task management, * agent execution, and push notification support. */ /** * Main A2A server application */ export * from './app'; /** * Request handling and routing */ export * from './request-handler'; /** * Helper functions for generating standardized responses */ export * from './response-helpers'; /** * Agent execution and lifecycle management */ export * from './agent-execution/agent-executor'; /** * Task management and persistence */ export * from './tasks/task-manager';