//! HTTP route handlers for the AgnosAI API.
//!
//! - `crews` — crew creation and execution (`/api/v1/crews`)
//! - `agents` — agent definition management (`/api/v1/agents/definitions`)
//! - `tools` — tool listing (`/api/v1/tools`)
//! - `definitions` — preset listing (`/api/v1/presets`)
//! - `sse` — SSE streaming (`/api/v1/crews/{id}/stream`)
//! - `a2a` — Agent-to-Agent delegation (`/api/v1/a2a`)
//! - `mcp` — Model Context Protocol JSON-RPC (`/mcp`)
//! - `health` — health and readiness probes (`/health`, `/ready`)
/// Agent-to-Agent task delegation.
/// Agent definition management.
/// Human-in-the-loop approval endpoints.
/// Crew creation and execution.
/// Dashboard API — crew history and agent performance.
/// Preset listing.
/// Health and readiness probes.
/// Model Context Protocol (JSON-RPC).
/// Server-sent events for crew streaming.
/// Tool listing.