1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
mod agent; mod cli; mod config; mod context; mod daemon; mod hooks; mod logging; mod orchestrator; mod session; mod shell; mod template; mod utils; mod workflow; mod workspace; use std::process::ExitCode; fn main() -> ExitCode { cli::run() }