matrix: hive-matrix-mcp crate (daemon+stdio bridge) + harness wiring (#548 phase 3)
This commit is contained in:
parent
23ed124881
commit
e6c53045ad
16 changed files with 3310 additions and 35 deletions
14
hive-matrix-mcp/src/lib.rs
Normal file
14
hive-matrix-mcp/src/lib.rs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
//! `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`].
|
||||
//!
|
||||
//! Phase 3 of #548. Architecture rationale + tool surface mirror the
|
||||
//! existing `damocles-daemon` (see issue thread for details).
|
||||
|
||||
pub mod client;
|
||||
pub mod paths;
|
||||
pub mod protocol;
|
||||
pub mod wake;
|
||||
Loading…
Reference in a new issue