summaryrefslogtreecommitdiff
path: root/makima/src/daemon/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'makima/src/daemon/mod.rs')
-rw-r--r--makima/src/daemon/mod.rs11
1 files changed, 6 insertions, 5 deletions
diff --git a/makima/src/daemon/mod.rs b/makima/src/daemon/mod.rs
index e15608b..014b6d7 100644
--- a/makima/src/daemon/mod.rs
+++ b/makima/src/daemon/mod.rs
@@ -3,9 +3,11 @@
//! 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
+//! - `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;
@@ -19,10 +21,9 @@ 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, ViewArgs};
+pub use cli::{Cli, Commands};
pub use config::DaemonConfig;
pub use error::{DaemonError, Result};