UNPKG

memory-engineering-mcp

Version:

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

17 lines • 540 B
/** * Memory Structure Schemas v13 - PRODUCTION-READY Autonomous AI Brain Architecture * Following Cline's philosophy with EXTREME behavioral programming */ export interface MemorySection { required: boolean; minLength?: number; description: string; example?: string; } export interface MemoryStructure { sections: Record<string, MemorySection>; minSections: number; guidance: string; } export declare const MEMORY_STRUCTURES: Record<string, MemoryStructure>; //# sourceMappingURL=memoryStructures-v5.d.ts.map