//! Smaller `cargo ktstr` subcommand dispatchers.
//!
//! One submodule per subcommand whose implementation is too small
//! to warrant its own top-level module file. Each submodule
//! contains exactly the dispatcher(s) for one logical subcommand;
//! the unit-of-edit is "the work behind one CLI verb."
//!
//! - [`shell`] — `cargo ktstr shell` (KVM VM + busybox).
//! - [`completions`] — `cargo ktstr completions` (clap_complete dump).
//! - [`funify`] — `cargo ktstr funify` (JSON value funification).
//! - [`model`] — `cargo ktstr model {fetch,status,clean}` (LLM
//! model cache management).
//! - [`export`] — `cargo ktstr export` (`.run` self-extracting
//! reproducer for a registered test).
//!
//! The `--kernel` resolution shim used by `shell` (and re-used by
//! the verifier subcommand) lives in [`super::kernel`].
pub use run_completions;
pub use run_export;
pub use run_funify;
pub use ;
pub use run_shell;