/** * V3 CLI Analyze Command * Code analysis, diff classification, AST analysis, and change risk assessment * * Features: * - AST analysis using ruvector (tree-sitter) with graceful fallback * - Symbol extraction (functions, classes, variables, types) * - Cyclomatic complexity scoring * - Diff classification and risk assessment * - Graph boundaries using MinCut algorithm * - Module communities using Louvain algorithm * - Circular dependency detection * * Created with ruv.io */ import type { Command } from '../types.js'; export declare const analyzeCommand: Command; export default analyzeCommand; //# sourceMappingURL=analyze.d.ts.map