leviath_cli/daemon/mod.rs
1//! The shared-world daemon: hosts one ECS world for every agent and serves the
2//! control socket. This module holds the CLI-side pieces that plug into the
3//! runtime's daemon library ([`leviath_runtime::host`],
4//! [`leviath_runtime::control_socket`]): the tool service that bridges tool calls
5//! to the built-in / MCP executors and the interaction hub.
6
7pub mod client;
8pub mod config_reload;
9pub mod fanout_spawner;
10pub mod gate_rules;
11pub mod lifecycle;
12pub mod mcp_pool;
13pub mod readiness;
14pub mod recovery;
15pub mod sandbox_manager;
16pub mod script_host;
17pub mod seed_command;
18pub mod setup;
19pub mod spawn;
20pub mod subagent;
21pub mod tool_service;