/** * openlore analyze command * * Runs static analysis on the codebase without LLM involvement. * Outputs repository map, dependency graph, and file significance scores. */ import { Command } from 'commander'; import { type RepositoryMap } from '../../core/analyzer/repository-mapper.js'; import { type DependencyGraphResult } from '../../core/analyzer/dependency-graph.js'; import { type AnalysisArtifacts } from '../../core/analyzer/artifact-generator.js'; interface AnalysisResult { repoMap: RepositoryMap; depGraph: DependencyGraphResult; artifacts: AnalysisArtifacts; duration: number; } /** * Check if analysis exists and return its age */ /** * Run the complete analysis pipeline */ export declare function runAnalysis(rootPath: string, outputPath: string, options: { maxFiles: number; include: string[]; exclude: string[]; }): Promise; export declare const analyzeCommand: Command; export {}; //# sourceMappingURL=analyze.d.ts.map