//! Event Bus — universal message ingestion for agent sessions.
//!
//! Any external system (Discord, Slack, Uptime Kuma, cron, CLI, other agents)
//! can push events into a running session. Events are formatted as system
//! messages with source metadata, allowing the agent to respond through
//! the appropriate channel.
pub use ;
pub use EventQueue;
pub use format_event_for_agent;
pub use watch_inbox;
pub use *;