1 2 3 4 5 6 7 8 9 10 11 12
//! Tool inventory and indexing. //! //! This module provides tool storage and lookup with support for: //! - Qualified tool names (handling collisions across servers) //! - Tool aliasing //! - Category-based filtering pub mod index; pub mod types; pub use index::{IndexCounts, ToolInventory}; pub use types::{AliasTarget, ArgMapping, QualifiedToolName, ToolCategory, ToolEntry};