UNPKG

memory-engineering-mcp

Version:

🧠 AI Memory System powered by MongoDB Atlas & Voyage AI - Autonomous memory management with zero manual work

26 lines • 800 B
/** * Framework Detection System v13 - Auto-detect project stack and optimize defaults * PRODUCTION-READY with zero manual configuration! */ export interface FrameworkConfig { name: string; displayName: string; patterns: string[]; excludes: string[]; minChunkSize: number; syncStrategy: 'incremental' | 'full'; guidance: { architecture: string; bestPractices: string; commonIssues: string; }; } /** * Detect the framework of a project and return optimized configuration */ export declare function detectFramework(projectPath: string): FrameworkConfig; /** * Get framework-specific sync recommendations */ export declare function getSyncRecommendations(framework: FrameworkConfig): string; //# sourceMappingURL=frameworkDetection.d.ts.map