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.
14 lines
516 B
Rust
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;
|