//! Command Suggestion System
//!
//! Provides "did you mean?" functionality for CLI commands using Levenshtein distance
//! and semantic command mapping to improve discoverability.
use HashMap;
// Levenshtein distance algorithm (free functions)
include!;
// CommandSuggester struct, impl, and Default
include!;
// Unit tests, extended tests, and property tests
include!;
// Comprehensive coverage tests
include!;