ui: consume grounded diary helpers via memory-core api

This commit is contained in:
Mariano Belinky
2026-04-08 19:40:31 +02:00
committed by mbelinky
parent 270a9f4347
commit 0a2ae66913
2 changed files with 3 additions and 2 deletions

View File

@@ -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

View File

@@ -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";