//! CLI command execution framework
//!
//! This module provides the core abstractions for building maintainable CLI commands:
//! - `Command` trait for uniform command execution
//! - `CommandContext` for shared state and configuration
//! - Common utilities for process management, validation, and user interaction
//! - Template engine for code generation
// ProcessTracker is deprecated - use mecha10_runtime::ProcessManager via ProcessService instead
pub use ;