export type SkillScope = 'global' | 'project'; export interface DiscoveredSkill { name: string; description: string; skillPath: string; baseDir: string; source: string; scope: SkillScope; kind: 'managed'; } export declare function scan_managed_skills(): DiscoveredSkill[]; export declare function scan_project_skills(cwd?: string): DiscoveredSkill[];