/** * CLI Tool Catalog * Maintains knowledge of popular CLI tools and their capabilities * Provides installation suggestions when relevant tools aren't installed */ export interface CLIToolInfo { name: string; description: string; capabilities: string[]; installCommands: { darwin: string; linux: string; win32: string; }; homepage?: string; category: string; } /** * Catalog of popular CLI tools * This is just metadata - no tools are installed or indexed by default */ export declare const CLI_TOOL_CATALOG: Record; /** * Find relevant CLI tools based on a search query */ export declare function suggestCLITools(query: string, limit?: number): CLIToolInfo[]; /** * Get installation command for current platform */ export declare function getInstallCommand(toolName: string): string | null; /** * Get all tools in a category */ export declare function getToolsByCategory(category: string): CLIToolInfo[]; /** * List all available categories */ export declare function getCategories(): string[]; //# sourceMappingURL=cli-catalog.d.ts.map