systemprompt-events 0.13.0

Event bus, SSE broadcasters, and fan-out routing for systemprompt.io AI governance infrastructure. A2A, analytics, and context stream wiring for the MCP governance pipeline.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Broadcaster implementations, the static fan-out [`EventRouter`], and the
//! cross-replica [`PostgresEventBridge`].

mod bridge;
mod broadcaster;
mod repository;
mod routing;

pub use bridge::PostgresEventBridge;
pub use broadcaster::{
    A2ABroadcaster, AgUiBroadcaster, AnalyticsBroadcaster, ConnectionGuard, ContextBroadcaster,
    GenericBroadcaster, HEARTBEAT_INTERVAL, HEARTBEAT_JSON, standard_keep_alive,
};
pub use routing::{
    A2A_BROADCASTER, AGUI_BROADCASTER, ANALYTICS_BROADCASTER, CONTEXT_BROADCASTER, EventRouter,
    OUTBOX_CHANNEL, OutboxChannel,
};