/** * Skills Validator - Validates SKILL.md files comply with Claude Code Skills spec * * Based on: * - https://code.claude.com/docs/en/skills (Official Anthropic docs) * - Intent Solutions Enterprise Standards */ export interface SkillValidationResult { file: string; fatal?: string; errors: string[]; warnings: string[]; info: string[]; wordCount?: number; hasAllowedTools?: boolean; } export interface SkillValidationSummary { total: number; compliant: number; withWarnings: number; withErrors: number; results: SkillValidationResult[]; } /** * Validate a single SKILL.md file against Claude Code spec */ export declare function validateSkillFile(filePath: string): Promise; /** * Find all SKILL.md files in a directory */ export declare function findSkillFiles(baseDir: string): Promise; /** * Validate all skills in a directory */ export declare function validateAllSkills(baseDir: string): Promise; //# sourceMappingURL=skills.d.ts.map