//! Shared library for the `hive-bash-daemon` binary. //! //! The daemon owns the subprocess runner loop and serves its MCP tools //! (`run`/`status`/`kill`) directly over streamable-http — no stdio //! bridge, no round-trip socket. pub mod mcp; pub mod paths; pub mod protocol; pub mod runner; pub mod stats; #[cfg(test)] mod test_util;