memory-engineering
Version:
Advanced Memory-Aware Code Context System with claude-flow-inspired architecture, showcasing MongoDB + Voyage AI strategic positioning
13 lines • 356 B
JavaScript
/**
* Memory Backend Interface
* Following claude-flow-main proven patterns for robust memory storage
*/
export class MemoryBackendError extends Error {
details;
constructor(message, details) {
super(message);
this.details = details;
this.name = 'MemoryBackendError';
}
}
//# sourceMappingURL=backend-interface.js.map