/** * Curated Catalog of Useful CLI Tools * * Organized by category with descriptions and capabilities. * When CLI discovery runs, it checks which of these tools exist on the system. */ export interface ToolDefinition { name: string; description: string; category: string; capabilities: string[]; platforms?: ('linux' | 'darwin' | 'win32')[]; packageManagers?: { brew?: string; apt?: string; npm?: string; pip?: string; cargo?: string; choco?: string; scoop?: string; winget?: string; }; } /** * Comprehensive catalog of useful CLI tools */ export declare const CLI_TOOL_CATALOG: ToolDefinition[]; //# sourceMappingURL=cli-tool-catalog.d.ts.map