Single-commit clean baseline after security scrub of niche-tells, project codenames, internal jargon, and contributor-email leaks. Contents: - 100 Rust crates (_primitives/_rust/) - 37 agent manifests (_manifests/) + generated specs (_generated/) - 67 user-invocable skills (skills/) - 33 hooks (hooks/) - Composition blocks (_blocks/) - Documentation (docs/, README.md) - TS adapter packages (_ts_packages/) - Assembler (_assembler/) - Roles (_roles/) - Templates (_templates/) - Forgejo CI (.forgejo/) Author: Denis Parfionovich <info@greendragon.info> License: see LICENSE.
22 lines
634 B
Rust
22 lines
634 B
Rust
//! kei-frustration-loop — per-user frustration learning loop binary.
|
|
//!
|
|
//! Five subcommands: bootstrap / nightly-scan / feedback / auto-train /
|
|
//! personalize. All work happens in cubes; this file dispatches only.
|
|
//!
|
|
//! Constructor Pattern: main.rs only routes parsed args to `cli::dispatch`.
|
|
|
|
use clap::Parser;
|
|
use std::process::ExitCode;
|
|
|
|
use kei_frustration_loop::cli;
|
|
|
|
fn main() -> ExitCode {
|
|
let parsed = cli::Cli::parse();
|
|
match cli::dispatch(parsed) {
|
|
Ok(()) => ExitCode::SUCCESS,
|
|
Err(e) => {
|
|
eprintln!("kei-frustration-loop: {e:#}");
|
|
ExitCode::from(1)
|
|
}
|
|
}
|
|
}
|