release_kit/commands.rs
1//! One handler per subcommand. Handlers hold the behavior; `main` only
2//! dispatches, and `cli` only declares the argument surface.
3
4pub mod adopt;
5pub mod assess;
6pub mod branches;
7pub mod completions;
8pub mod devshell;
9pub mod doctor;
10pub mod forge;
11pub mod guide;
12pub mod init;
13pub mod license;
14pub mod lines;
15pub mod message;
16pub mod payload;
17pub mod read;
18pub mod runs;
19pub mod setup;
20pub mod skill;
21pub mod status;
22pub mod upgrade;
23pub mod usage;
24pub mod versions;
25pub mod worktree;
26
27pub(crate) use crate::embedded::walk;