klasp 0.1.0

Block AI coding agents on the same quality gates your humans hit. See https://github.com/klasp-dev/klasp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! klasp CLI — entry point.
//!
//! W3 wires up the gate runtime (`klasp gate`) and its supporting modules
//! (`git`, `sources`). The remaining subcommands (`init`, `install`,
//! `uninstall`, `doctor`) still return their W1 placeholder — those land in
//! W2 / W4 per [docs/roadmap.md §"Timeline"].

mod cli;
mod cmd;
mod git;
mod registry;
mod sources;

fn main() -> std::process::ExitCode {
    cli::run()
}