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 depend;
9pub mod devshell;
10pub mod doctor;
11pub mod forge;
12pub mod guide;
13pub mod init;
14pub mod license;
15pub mod lines;
16pub mod message;
17pub mod payload;
18pub mod read;
19pub mod runs;
20pub mod setup;
21pub mod skill;
22pub mod status;
23pub mod upgrade;
24pub mod usage;
25pub mod versions;
26pub mod worktree;
27
28pub(crate) use crate::embedded::walk;