/** * Skill validator — kiểm tra frontmatter + cấu trúc thư mục theo best practice * (chuyển thể từ Claude Code "Skill Development" skill). */ export interface ValidationIssue { level: 'error' | 'warn'; message: string; } export interface ValidationReport { ok: boolean; issues: ValidationIssue[]; meta: { name?: string; description?: string; version?: string; bodyWords?: number; }; } export declare function validateSkillDir(skillDir: string): ValidationReport; /** * Scaffold skill skeleton mới — SKILL.md + 3 thư mục (references/examples/scripts). * Trả về list file/dir đã tạo. */ export declare function scaffoldSkill(skillDir: string, name: string): string[];