systemprompt-agent 0.14.6

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
//! MCP-to-A2A bridging for tool execution within agent tasks.
//!
//! Covers transforming MCP tool results into A2A artifacts
//! ([`artifact_transformer`]), task-construction helpers, and the
//! [`ToolResultHandler`] that routes tool outputs into task state.

pub mod artifact_transformer;
pub mod task_helper;
pub mod tool_result_handler;

pub use artifact_transformer::{
    McpToA2aTransformer, artifact_type_to_string, infer_type, parse_tool_response,
};
pub use tool_result_handler::ToolResultHandler;