eclaw 0.0.10

Personal AI assistant powered by Elph
1
2
3
4
5
6
7
use crate::runtime::{EXIT_SUCCESS, ExitCode};

/// Launch the interactive assistant (default, no subcommand).
pub fn handle() -> ExitCode {
    eprintln!("eclaw — interactive mode not yet implemented");
    EXIT_SUCCESS
}