/** * A parsed instruction from a .mdc or .cursorrules file. * Maps to the same shape as a Totem lesson for compilation. */ export interface CursorInstruction { /** Source file path (relative) */ source: string; /** Heading derived from filename or frontmatter description */ heading: string; /** The instruction body text */ body: string; /** Optional file globs from frontmatter (maps to fileGlobs on compiled rules) */ globs?: string[]; } export declare function scanCursorInstructions(projectRoot: string): CursorInstruction[]; //# sourceMappingURL=cursor-adapter.d.ts.map