/** * analyze.ts — the request handler behind the consolidated `analyze_project` * tool. It ties the intelligence layer (index, graph, reasoning, validation, * AST) together behind a single `view` argument so callers get project * understanding without thinking about individual modules. * * Roadmap #1/#2/#3/#8/#10 surfaced as one high-level tool (#6). */ type Args = Record; export declare function analyzeProject(projectPath: string, args: Args): Promise; export {};