/** * Start Vibing Stacks — Project Standards Scanner * * Scans existing project files to extract coding patterns * and standards already in use. */ import type { StandardsReview } from './types.js'; /** * Run all scanners against a project directory. * Returns combined results from all sources. */ export declare function scanProjectStandards(projectDir: string): StandardsReview;