wasmind_cli 0.1.0

Command-line interface for Wasmind AI agent coordination system
Documentation
pub const CHECK_MARK: &str = "";
pub const X: &str = "X";

// Text area icons
pub const CURSOR_ICON: &str = "";

// Chat History Icons
pub const USER_ICON: &str = "";
pub const LLM_ICON: &str = "";
pub const TOOL_ICON: &str = "";
pub const SYSTEM_ICON: &str = "";

// Graph icons
pub const MAIN_MANAGER_ICON: &str = "";
pub const SUB_MANGER_ICON: &str = "";
pub const WORKER_ICON: &str = "";

// Command execution icons
pub const GEAR_ICON: &str = "";
pub const SUCCESS_ICON: &str = "";
pub const FAILED_ICON: &str = "";
pub const TIMEOUT_ICON: &str = "";
pub const SIGNAL_ICON: &str = "";
pub const ERROR_ICON: &str = "!";

// Actor type icons for check command
pub const USER_ACTOR_ICON: &str = "";
pub const DEPENDENCY_ACTOR_ICON: &str = "";