UNPKG

claude-flow

Version:

Ruflo - Enterprise AI agent orchestration for Claude Code. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration

19 lines 654 B
/** * 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