diff --git a/CHANGELOG.md b/CHANGELOG.md index 681de913c14..9cfa308854f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ Docs: https://docs.openclaw.ai - Plugins/provider-auth: let provider manifests declare `providerAuthAliases` so provider variants can share env vars, auth profiles, config-backed auth, and API-key onboarding choices without core-specific wiring. - Memory/dreaming: add a grounded REM backfill lane with historical `rem-harness --path`, diary commit, and reset flows so old daily notes can be replayed safely into `DREAMS.md`. Thanks @mbelinky. - Memory/dreaming: harden grounded diary extraction so `What Happened`, `Reflections`, and durable candidates suppress operational noise and preserve more atomic lasting facts. Thanks @mbelinky. +- Control UI/dreaming: add a structured diary view with timeline navigation, backfill/reset controls, and traceable dreaming summaries. Thanks @mbelinky. ### Fixes diff --git a/src/gateway/server-methods/doctor.ts b/src/gateway/server-methods/doctor.ts index 10d8d06729e..3e11abbff61 100644 --- a/src/gateway/server-methods/doctor.ts +++ b/src/gateway/server-methods/doctor.ts @@ -2,9 +2,9 @@ import fs from "node:fs/promises"; import path from "node:path"; import { removeBackfillDiaryEntries, + previewGroundedRemMarkdown, writeBackfillDiaryEntries, -} from "../../../extensions/memory-core/src/dreaming-narrative.js"; -import { previewGroundedRemMarkdown } from "../../../extensions/memory-core/src/rem-evidence.js"; +} from "../../../extensions/memory-core/api.js"; import { resolveAgentWorkspaceDir, resolveDefaultAgentId } from "../../agents/agent-scope.js"; import { loadConfig } from "../../config/config.js"; import type { OpenClawConfig } from "../../config/config.js";