//! Command-line interface support.
//!
//! This module contains reusable CLI-facing logic used by binaries such as:
//!
//! - `agentmem` (interactive/local CLI)
//! - `agentmemd` (future daemon/service mode)
//!
//! Design goals:
//!
//! - keep binary entrypoints thin
//! - separate command parsing from business logic
//! - centralize human-readable output
//! - support machine-friendly output later
//! - make onboarding flows testable
/// Re-export of the primary command runner.
///
/// Intended use in binaries:
///
/// ```rust,no_run
/// use agent_hashmap::cli::run;
/// ```
pub use run;
/// Re-export common output helpers.
pub use ;
/// Re-export onboarding entrypoint.
pub use run_onboarding;