shared-context-engineering 0.3.0-pre-alpha-v5

Shared Context Engineering CLI
1
2
3
4
5
6
7
8
9
10
11
mod app;
mod cli_schema;
mod command_surface;
mod generated_migrations;
mod services;

use std::process::ExitCode;

fn main() -> ExitCode {
    app::run(std::env::args())
}