mirror of
https://github.com/moltbot/moltbot.git
synced 2026-04-12 09:26:19 +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
13 lines
430 B
TypeScript
13 lines
430 B
TypeScript
export type { OpenClawConfig } from "openclaw/plugin-sdk/memory-core";
|
|
export type {
|
|
MemoryEmbeddingProbeResult,
|
|
MemoryProviderStatus,
|
|
MemorySyncProgressUpdate,
|
|
} from "openclaw/plugin-sdk/memory-core-host-engine-storage";
|
|
export {
|
|
dedupeDreamDiaryEntries,
|
|
removeBackfillDiaryEntries,
|
|
writeBackfillDiaryEntries,
|
|
} from "./src/dreaming-narrative.js";
|
|
export { previewGroundedRemMarkdown } from "./src/rem-evidence.js";
|