systemprompt-agent 0.21.1

Agent-to-Agent (A2A) protocol for systemprompt.io AI governance: streaming, JSON-RPC models, task lifecycle, .well-known discovery, and governed agent orchestration.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Request handlers for the A2A server endpoints.
//!
//! Covers agent-card discovery ([`handle_agent_card`]), the main JSON-RPC
//! request dispatch ([`handle_agent_request`]), and push-notification config
//! management, all sharing the [`AgentHandlerState`] application state.
//!
//! Copyright (c) systemprompt.io — Business Source License 1.1.
//! See <https://systemprompt.io> for licensing details.

pub mod card;
pub mod push_notification_config;
pub mod request;
pub mod state;

pub use card::handle_agent_card;
pub use request::handle_agent_request;
pub use state::AgentHandlerState;