/** * Inspect Tools CLI Command * * Provides command-line interface for tool discovery, capability analysis, * and metadata inspection for AI enhancement features. */ import { Command } from 'commander'; export interface ToolDiscoveryOptions { /** Include only knowledge-enhanced tools */ knowledgeEnhancedOnly?: boolean; /** Include detailed metadata in results */ includeDetails?: boolean; } /** * Create inspect-tools CLI command */ export declare function createInspectToolsCommand(): Command; //# sourceMappingURL=inspect-tools.d.ts.map