Skip to main content

spec_driven_docs/
commands.rs

1//! Subcommand handlers.
2//!
3//! One module per subcommand. Each exposes a free function
4//! `run(ctx, args) -> Result<(), AppError>` that projects clap args, calls
5//! the gates or services, renders through `output`, and returns a typed
6//! error. No clap derives here.
7
8pub mod assess;
9pub mod completions;
10pub mod debt;
11pub mod docs;
12pub mod doctor;
13pub mod front;
14pub mod gate;
15pub mod hooks;
16pub mod init;
17pub mod ki;
18pub mod license;
19pub mod man;
20pub mod payload;
21pub mod policy;
22pub mod read;
23pub mod reconcile;
24pub mod self_depend;
25pub mod self_manifest;
26pub mod skill;
27pub mod status;
28pub mod track;
29pub mod upgrade;
30pub mod verify;