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