summaryrefslogtreecommitdiff
path: root/makima/src/daemon/mod.rs
diff options
context:
space:
mode:
authorsoryu <soryu@soryu.co>2026-01-11 05:52:14 +0000
committersoryu <soryu@soryu.co>2026-01-15 00:21:16 +0000
commit87044a747b47bd83249d61a45842c7f7b2eae56d (patch)
treeef2000ce79ffcc2723ef841acef5aa1deb1d5378 /makima/src/daemon/mod.rs
parent077820c4167c168072d217a1b01df840463a12a8 (diff)
downloadsoryu-87044a747b47bd83249d61a45842c7f7b2eae56d.tar.gz
soryu-87044a747b47bd83249d61a45842c7f7b2eae56d.zip
Contract system
Diffstat (limited to 'makima/src/daemon/mod.rs')
-rw-r--r--makima/src/daemon/mod.rs22
1 files changed, 22 insertions, 0 deletions
diff --git a/makima/src/daemon/mod.rs b/makima/src/daemon/mod.rs
new file mode 100644
index 0000000..d7ec3f0
--- /dev/null
+++ b/makima/src/daemon/mod.rs
@@ -0,0 +1,22 @@
+//! 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
+
+pub mod api;
+pub mod cli;
+pub mod config;
+pub mod db;
+pub mod error;
+pub mod process;
+pub mod task;
+pub mod temp;
+pub mod worktree;
+pub mod ws;
+
+pub use cli::{Cli, Commands, ContractCommand, SupervisorCommand};
+pub use config::DaemonConfig;
+pub use error::{DaemonError, Result};