Agent-to-Agent Protocol

A standardized JSON-RPC over SSE protocol for agents to collaborate, delegate tasks, and hand off tools.

// Task Delegation Example
{
  "jsonrpc": "2.0",
  "method": "delegate_task",
  "params": {
    "goal": "Check server health",
    "context": { "server_ip": "10.0.0.1" }
  }
}
View Protocol Spec