SPB Git

spb/khaelor Public

KHAELOR — a terminal-native autonomous engineering agent powered by Anthropic.

TypeScript 82.9% HTML 14.9% CSS 1.1% JavaScript 0.7%
384 B · 21 lines typescript
Raw Blame History
1/**2 * KHAELOR3 * File: src/memory/index.ts4 * Description: Public surface of the project-memory module (v2 design §5).5 *6 * Author: Simon-Pierre Boucher7 * Contact: contact@spboucher.ai8 */910export {11  MEMORY_FILE,12  appendMemoryEntry,13  parseMemory,14  purgeCandidates,15} from "./store.js";16export type {17  MemoryConfidence,18  MemoryEntry,19  MemoryProvenance,20} from "./store.js";21