/** * KHAELOR * File: src/memory/index.ts * Description: Public surface of the project-memory module (v2 design ยง5). * * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai */ export { MEMORY_FILE, appendMemoryEntry, parseMemory, purgeCandidates, } from "./store.js"; export type { MemoryConfidence, MemoryEntry, MemoryProvenance, } from "./store.js";