intent_engine/cli_handlers/mod.rs
1// CLI command handlers module (Simplified for v0.10.1+)
2//
3// This module contains CLI command handling logic for the simplified 6-command structure:
4// Core: plan, log, search
5// System: init, dashboard, doctor
6
7pub mod dashboard;
8pub mod other;
9pub mod utils;
10// Removed modules:
11// - pub mod guide; // Removed: Help content moved to --help
12// - pub mod task; // Removed: No longer needed with simplified CLI
13
14// Re-export commonly used functions (simplified)
15pub use dashboard::{check_dashboard_status, check_mcp_connections, handle_dashboard_command};
16pub use other::{
17 handle_doctor_command,
18 handle_init_command,
19 handle_search_command,
20 // Deprecated handlers (kept for potential MCP or Dashboard use):
21 // handle_current_command, handle_event_command, handle_report_command,
22 // handle_session_restore, handle_setup, handle_logs_command, check_session_start_hook
23};
24pub use utils::{get_status_badge, print_task_context, read_stdin};