//! 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 supervisor` - Contract orchestration commands //! - `makima contract` - Task-contract interaction commands //! - `makima view` - Interactive TUI browser for tasks, contracts, and files 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 tui; pub mod worktree; pub mod ws; pub use cli::{Cli, Commands, ContractCommand, SupervisorCommand, ViewArgs}; pub use config::DaemonConfig; pub use error::{DaemonError, Result};