systemprompt-agent 0.15.0

Agent-to-Agent (A2A) protocol for systemprompt.io AI governance: streaming, JSON-RPC models, task lifecycle, .well-known discovery, and governed agent orchestration.
Documentation
//! HTTP server implementation of the A2A (agent-to-agent) protocol.
//!
//! Hosts the JSON-RPC endpoint and agent-card discovery via [`Server`] (or the
//! [`run_standalone`] entry point), with submodules for authentication
//! ([`auth`]), error envelopes ([`errors`]), request [`handlers`], and the
//! streaming and processing pipelines.

pub mod auth;
pub mod errors;
pub mod handlers;
pub mod processing;
pub mod server;
pub mod standalone;
pub mod streaming;

pub use handlers::AgentHandlerState;
pub use server::Server;
pub use standalone::run_standalone;
pub use systemprompt_models::AgentConfig;