//! Built-in command handler implementations.
//!
//! This module exists to map already-parsed CLI arguments onto concrete built-in
//! command behavior. The public command grammar lives in [`crate::cli`]; these
//! handlers are the next step after parsing, not a second place that defines
//! syntax.
//!
//! Keep the split boring:
//!
//! - argument shapes and command names belong in [`crate::cli`]
//! - built-in workflows belong here
//! - host orchestration still belongs in [`crate::app`]
//! - output shaping should flow back as rows/documents, not pre-rendered text
//!
//! The modules here are grouped by built-in command namespace, not by transport
//! or rendering concerns.
pub
pub
pub
pub
pub
pub