//! Common imports for command modules.
//!
//! Each `commands/<name>.rs` does `use crate::prelude::*;` to
//! avoid restating the SDK-type import block at the top of every
//! file. Keep this module a re-export curtain only — no actual
//! logic. The SDK exposure here is intentionally narrow: just
//! the types the read-only Phase 1 surface needs.
pub use crate;
pub use crate;
/// Default `--node` value for subcommands that talk to the
/// in-process supervisor. Centralised so a future protocol bump
/// (or a `--node` rename) doesn't need to touch every command
/// module.
pub const DEFAULT_SUPERVISOR_NODE: u64 = 1;