mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 04:50:43 +00:00
* fix(active-memory): preserve parent channel context for recall runs * fix(active-memory): keep recall runs on the resolved channel * fix(active-memory): prefer resolved recall channel over wrapper hints * fix(active-memory): trust explicit recall channel hints * fix(active-memory): rank recall channel fallbacks by trust * Fix dreaming replay and recovery flows * fix: prevent dreaming event loss and diary write races * chore: add changelog entry for memory fixes * fix: harden dreaming repair and diary writes * fix: harden dreaming artifact archive naming
11 lines
385 B
TypeScript
11 lines
385 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 {
|
|
MemorySearchManager,
|
|
MemorySearchRuntimeDebug,
|
|
MemorySearchResult,
|
|
} from "./host/types.js";
|