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 completions;
9pub mod gate;
10pub mod hooks;
11pub mod init;
12pub mod license;
13pub mod man;
14pub mod read;
15pub mod self_manifest;
16pub mod skill;
17pub mod status;
18pub mod upgrade;
19pub mod verify;