stasis-rs 0.9.3

Durable AI orchestration framework with runtime jobs, lineage, and memory integration
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Agent platform outbound ports (ADR-0007).
//!
//! Comms, translation, and MCP bridge contracts stay separate:
//! transport ≠ codec ≠ tool bridge.

pub mod event_ingress;
pub mod mcp_tool_exporter;
pub mod mcp_tool_provider;
pub mod message_codec;
pub mod transport;
pub mod turn_wait_store;

pub use event_ingress::{AgentEventIngress, IngressAck, IngressDisposition};
pub use mcp_tool_exporter::McpToolExporter;
pub use mcp_tool_provider::McpToolProvider;
pub use message_codec::AgentMessageCodec;
pub use transport::AgentTransport;
pub use turn_wait_store::TurnWaitStore;