diff options
Diffstat (limited to 'makima/src/daemon/cli/mod.rs')
| -rw-r--r-- | makima/src/daemon/cli/mod.rs | 16 |
1 files changed, 8 insertions, 8 deletions
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. |
