UNPKG

codecrucible-synth

Version:

Production-Ready AI Development Platform with Multi-Voice Synthesis, Smithery MCP Integration, Enterprise Security, and Zero-Timeout Reliability

28 lines 847 B
/** * Simple Codebase Analyzer - Direct, conflict-free analysis with Chain-of-Thought * Bypasses complex agent systems that cause Ollama conflicts * Shows transparent reasoning process to users */ export interface AnalysisResult { success: boolean; content: string; metadata: { duration: number; promptLength: number; responseLength: number; projectStructure: string; }; error?: string; } export declare class SimpleCodebaseAnalyzer { private provider; private chainOfThought; constructor(); analyzeCurrentProject(): Promise<AnalysisResult>; private getProjectStructure; private getFileIcon; private readKeyFiles; private countFiles; } export declare const simpleCodebaseAnalyzer: SimpleCodebaseAnalyzer; //# sourceMappingURL=simple-codebase-analyzer.d.ts.map