soma-core 2.0.1

World's first production-ready self-aware development system with meta-cognitive capabilities and cognitive reasoning engine for intelligent development platforms
Documentation
1
2
3
4
5
6
7
8
9
10
11
// src/bin/soma-cli.rs
// Interactive CLI binary for SOMA Core agent collaboration

use soma_core::cli::start_interactive_cli;

fn main() {
    if let Err(e) = start_interactive_cli() {
        eprintln!("❌ Error: {}", e);
        std::process::exit(1);
    }
}