blob: e15608bf8dfa3a8cafb237954d00c86eb3ad2e2a (
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
26
27
28
|
//! 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, ViewArgs};
pub use config::DaemonConfig;
pub use error::{DaemonError, Result};
|