sysen 0.1.0

A system intelligence CLI tool that explains system behavior
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub fn handle_help_command() {
    println!("\nSysen — Understand your system\n");

    println!("Usage:");
    println!("  sysen <command>\n");

    println!("Commands:");
    println!("  status     Show system status (CPU, memory, processes)");
    println!("  explain    Explain system behavior and issues");
    println!("  help       Show this help message\n");

    println!("Examples:");
    println!("  sysen status");
    println!("  sysen explain\n");
}