blob: 18b5e8a803cea7188594c10b0ebd29492ddaadce (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
//! 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 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};
|