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