export interface ScannedSkill { name: string; description: string; scope: 'agent' | 'project'; project_name?: string; source_path: string; } /** * Scan .claude/commands/ directories for skill files (.md). * Scans: global (~/.claude/commands/), agent folder paths, and workspace project subfolders. * Recurses into subdirectories (e.g. flutter-audit/SKILL.md). */ export declare function scanSkills(workspacePath: string, agentFolders?: string[]): ScannedSkill[];