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 fanout_spawner;
9pub mod gate_rules;
10pub mod mcp_pool;
11pub mod recovery;
12pub mod sandbox_manager;
13pub mod script_host;
14pub mod seed_command;
15pub mod setup;
16pub mod spawn;
17pub mod subagent;
18pub mod tool_service;