//! Makima CLI - Unified CLI for server, daemon, and task management. //! //! This crate provides: //! - `makima server` - Run the makima server //! - `makima daemon` - Run the daemon (connect to server, manage tasks) //! - `makima directive` - Directive command group (ask, create-order, etc.) //! //! The legacy `makima supervisor` / `makima contract` / `makima view` //! command groups were removed alongside the legacy contracts + //! supervisor task-grouping system. pub mod api; pub mod cli; pub mod config; pub mod db; pub mod error; pub mod process; pub mod setup; pub mod skill_installer; pub mod skills; pub mod storage; pub mod task; pub mod temp; pub mod worktree; pub mod ws; pub use cli::{Cli, Commands}; pub use config::DaemonConfig; pub use error::{DaemonError, Result};