terraphim_agent 1.16.30

Terraphim AI Agent CLI - Command-line interface with interactive REPL and ASCII graph visualization
Documentation
//! Forgiving CLI Parser
//!
//! Provides typo-tolerant command parsing for AI agents and human users.
//! Uses edit distance algorithms to auto-correct common typos and suggest
//! alternatives for unknown commands.

#[allow(dead_code)]
pub mod aliases;
#[allow(dead_code)]
pub mod parser;
#[allow(dead_code)]
pub mod suggestions;

#[allow(unused_imports)]
pub use aliases::{AliasRegistry, DEFAULT_ALIASES};
#[allow(unused_imports)]
pub use parser::{ForgivingParser, ParseResult};
#[allow(unused_imports)]
pub use suggestions::CommandSuggestion;