export interface SkillMetadata { name: string; description: string; directory: string; filePath: string; confidence?: number; usage_count?: number; success_count?: number; failure_count?: number; } export interface ParsedSkill extends SkillMetadata { instructions: string; hasScripts: boolean; hasReferences: boolean; } export declare function discoverSkills(agentDir: string): Promise; export declare function loadSkill(meta: SkillMetadata): Promise; export declare function formatSkillsForPrompt(skills: SkillMetadata[]): string; export declare function refreshSkills(agentDir: string): Promise; export declare function expandSkillCommand(input: string, skills: SkillMetadata[]): Promise<{ expanded: string; skillName: string; } | null>;