export interface SkillFrontmatter { name: string; description: string; } export interface Skill { frontmatter: SkillFrontmatter; body: string; category: 'command' | 'workflow'; filename: string; } export declare function parseFrontmatter(content: string): { frontmatter: SkillFrontmatter; body: string; }; export declare function loadSkills(skillsDir: string): Skill[]; export declare function getBundledSkillsDir(): string;