mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-05 10:11:36 +00:00
* feat(memory): add provenance and recall metadata to the memory index * feat(memory): provenance-gated promotion and capture hygiene * feat(dreaming): LLM consolidation with deterministic gates, on by default * feat(active-memory): deterministic recall lane with escalation default * feat(memory): user model file and standing intents * docs(memory): document the memory architecture * fix(memory): live-QA fixes — metadata writers, provenance classes, intent scope, claim accumulation
14 lines
452 B
TypeScript
14 lines
452 B
TypeScript
// Focused runtime contract for memory file/backend access.
|
|
|
|
export { listMemoryFiles, normalizeExtraMemoryPaths } from "./host/internal.js";
|
|
export { readAgentMemoryFile } from "./host/read-file.js";
|
|
export { resolveMemoryBackendConfig } from "./host/backend-config.js";
|
|
export type {
|
|
MemoryEntryProvenance,
|
|
MemoryOriginClass,
|
|
MemorySearchManager,
|
|
MemorySearchRuntimeDebug,
|
|
MemorySearchResult,
|
|
MemorySessionKind,
|
|
} from "./host/types.js";
|