sacp 11.0.0

Core protocol types and traits for SACP (Symposium's extensions to ACP)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! ACP protocol schema types and message implementations.
//!
//! This module contains all the types from the Agent-Client Protocol schema,
//! including requests, responses, notifications, and supporting types.
//! All types are re-exported flatly from this module.

// Internal organization
mod agent_to_client;
mod client_to_agent;
mod enum_impls;
mod proxy_protocol;

// Re-export everything from agent_client_protocol_schema
pub use agent_client_protocol_schema::*;

// Re-export proxy/MCP protocol types
pub use proxy_protocol::*;