/** * Frontmatter Validator - Validates YAML frontmatter in markdown files * * Validates commands and agents markdown files for proper frontmatter formatting. */ export interface FrontmatterValidationResult { file: string; fileType: 'command' | 'agent' | 'unknown'; error?: string; errors: string[]; } export interface FrontmatterValidationSummary { total: number; warnings: number; errors: number; results: FrontmatterValidationResult[]; } /** * Validate a single markdown file's frontmatter */ export declare function validateFrontmatterFile(filePath: string): Promise; /** * Find all command and agent markdown files */ export declare function findFrontmatterFiles(baseDir: string): Promise; /** * Validate all frontmatter in a directory */ export declare function validateAllFrontmatter(baseDir: string, strict?: boolean): Promise; //# sourceMappingURL=frontmatter.d.ts.map