lean_host_mcp/cli/mod.rs
1//! CLI subcommand wiring.
2//!
3//! The default subcommand is `serve`, which boots the rmcp stdio
4//! transport against a [`ProjectBroker`](crate::broker::ProjectBroker).
5//! [`install_worker`] (sub)builds and installs a per-toolchain worker
6//! binary into [`WorkerBinary::install_root`](crate::toolchain::WorkerBinary::install_root).
7//! [`config_init`] writes a documented starter config file.
8
9pub mod config_init;
10pub mod install_worker;
11pub mod processes;