mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-03 19:01:33 +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
17 lines
438 B
TypeScript
17 lines
438 B
TypeScript
/**
|
|
* Public SDK subpath for memory host runtime file path helpers.
|
|
*/
|
|
export {
|
|
listMemoryFiles,
|
|
normalizeExtraMemoryPaths,
|
|
readAgentMemoryFile,
|
|
resolveMemoryBackendConfig,
|
|
} from "../../packages/memory-host-sdk/src/runtime-files.js";
|
|
export type {
|
|
MemoryEntryProvenance,
|
|
MemoryOriginClass,
|
|
MemorySearchResult,
|
|
MemorySearchRuntimeDebug,
|
|
MemorySessionKind,
|
|
} from "../../packages/memory-host-sdk/src/runtime-files.js";
|