/** * Skill Scanner * Detects frameworks and skills from the project */ export interface DetectedSkill { name: string; version: string; source: 'package' | 'skill' | 'mcp' | 'config'; docRegistry?: string; displayName?: string; } interface ScanOptions { only?: string[]; } /** * Scan a project directory for frameworks and skills */ export declare function scanProject(cwd: string, options?: ScanOptions): Promise; export {}; //# sourceMappingURL=index.d.ts.map