/** * Scanner: Documentation * * Reads key documentation files from the project root and stores * their content truncated to 2000 characters each. * * Files scanned: * - README.md * - CONTRIBUTING.md * - CLAUDE.md * - .cursorrules * - .github/PULL_REQUEST_TEMPLATE.md * - docs/**\/*.md */ import type { DocumentationReport } from "../types.js"; export declare function scanDocumentation(projectRoot: string): Promise; //# sourceMappingURL=documentation.d.ts.map