From 5d8e3f80254f20eb6672701fad5f116a3b05dbc3 Mon Sep 17 00:00:00 2001 From: soryu Date: Tue, 20 Jan 2026 00:23:49 +0000 Subject: Fix: auth for CLI and CLI SIGTERM --- makima/src/daemon/cli/mod.rs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'makima/src/daemon/cli/mod.rs') diff --git a/makima/src/daemon/cli/mod.rs b/makima/src/daemon/cli/mod.rs index 842fa63..ba71c28 100644 --- a/makima/src/daemon/cli/mod.rs +++ b/makima/src/daemon/cli/mod.rs @@ -12,7 +12,7 @@ pub use contract::ContractArgs; pub use daemon::DaemonArgs; pub use server::ServerArgs; pub use supervisor::SupervisorArgs; -pub use view::{ViewArgs, ViewCommand}; +pub use view::ViewArgs; /// Makima - unified CLI for server, daemon, and task management. #[derive(Parser, Debug)] @@ -39,16 +39,16 @@ pub enum Commands { #[command(subcommand)] Contract(ContractCommand), - /// Interactive TUI browser for tasks, contracts, and files + /// Interactive TUI browser for contracts and tasks /// - /// Provides a fuzzy-searchable interface with keyboard navigation. + /// Provides a drill-down interface for browsing contracts, viewing their + /// tasks, and streaming real-time task output. /// /// Keyboard shortcuts: - /// ↑/k: Move up ↓/j: Move down Enter: Select - /// /: Search Tab: Toggle preview q: Quit - /// e: Edit d: Delete c: cd to worktree - #[command(subcommand)] - View(ViewCommand), + /// ↑/k: Move up ↓/j: Move down Enter/l: Drill in + /// Esc/h: Go back /: Search q: Quit + /// e: Edit d: Delete c: cd to worktree + View(ViewArgs), } /// Supervisor subcommands for contract orchestration. -- cgit v1.2.3