/** * Skill types — extracted facts from SKILL.md files. */ export interface FileReference { raw: string; normalized: string; segments: string[]; line?: number; } export interface Skill { name: string; description: string; path?: string; rawContent: string; frontmatter: Record; frontmatterParseError?: string; fileReferences: FileReference[]; } //# sourceMappingURL=types.d.ts.map