//! `hive-matrix-mcp` library: shared types + helpers used by both the //! `hive-matrix-daemon` binary (long-running matrix-sdk Client) and the //! `hive-matrix-mcp` binary (stdio MCP bridge claude spawns per turn). //! //! The wire protocol between the two binaries lives in [`protocol`]. //! Path helpers (token file, daemon socket) live in [`paths`]. //! //! Architecture rationale and tool surface mirror the existing //! `damocles-daemon` v0 set. pub mod client; pub mod paths; pub mod protocol; pub mod wake;