hyperhive/hive-matrix-mcp/src/lib.rs
atlas 5f57ea4ef1 ci(#1555): de-circularize hive-matrix-mcp lib doc (argus nit)
Drop 'Phase 3 of the matrix-MCP work' (circular inside the matrix-mcp
crate) + the vague issue-thread pointer; keep the self-contained note
that it mirrors damocles-daemon's v0 set.
2026-06-10 13:14:42 +02:00

14 lines
516 B
Rust

//! `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;