From 9adecd849b36bc8bdf48a31b37c009ab0409f42f Mon Sep 17 00:00:00 2001 From: "openclaw-docs-sync[bot]" Date: Sun, 5 Apr 2026 14:11:41 +0000 Subject: [PATCH] chore(sync): mirror docs from openclaw/openclaw@7ff7a27f615ad702c471e6b3a40957dc39aac854 --- .openclaw-sync/source.json | 4 ++-- docs/.generated/config-baseline.sha256 | 6 +++--- docs/cli/memory.md | 1 + docs/concepts/memory-dreaming.md | 1 + docs/gateway/configuration-reference.md | 1 + docs/reference/memory-config.md | 19 ++++++++++--------- 6 files changed, 18 insertions(+), 14 deletions(-) diff --git a/.openclaw-sync/source.json b/.openclaw-sync/source.json index a24465dd8..40ca33a9b 100644 --- a/.openclaw-sync/source.json +++ b/.openclaw-sync/source.json @@ -1,5 +1,5 @@ { "repository": "openclaw/openclaw", - "sha": "79d722e922010c34f4b12b284a69fed205b2603d", - "syncedAt": "2026-04-05T14:06:50.690Z" + "sha": "7ff7a27f615ad702c471e6b3a40957dc39aac854", + "syncedAt": "2026-04-05T14:11:40.508Z" } diff --git a/docs/.generated/config-baseline.sha256 b/docs/.generated/config-baseline.sha256 index c2f659947..102f28f6b 100644 --- a/docs/.generated/config-baseline.sha256 +++ b/docs/.generated/config-baseline.sha256 @@ -1,4 +1,4 @@ -1dc927cd4be5a0ef6e17958a53ceb6df155107ca8100cdb4d417003483f17990 config-baseline.json -b1a181b667568b5860a80945837d544fdec4f946fba34e871936ce0cd3eb689b config-baseline.core.json +ea126fa950fe65c4f7be68c92ff06f3a2256dfe1e770c8643c93b132528bb217 config-baseline.json +587eb0dde83443aa49d743010d224cdc2d7bb6c9d21c3c4effae44f5a06913c5 config-baseline.core.json 3c999707b167138de34f6255e3488b99e404c5132d3fc5879a1fa12d815c31f5 config-baseline.channel.json -fcf32a00815f392ceda9195b8c2af82ae7e88da333feaacee9296f7d5921e73f config-baseline.plugin.json +31a7d5fd79cb3591a6469c13e5ab42010f8c54e9c1f74da0aad4a1629969085d config-baseline.plugin.json diff --git a/docs/cli/memory.md b/docs/cli/memory.md index 1908e9ed4..29db96ce2 100644 --- a/docs/cli/memory.md +++ b/docs/cli/memory.md @@ -133,3 +133,4 @@ Notes: - If effectively active memory remote API key fields are configured as SecretRefs, the command resolves those values from the active gateway snapshot. If gateway is unavailable, the command fails fast. - Gateway version skew note: this command path requires a gateway that supports `secrets.resolve`; older gateways return an unknown-method error. - Dreaming cadence defaults to each mode's preset schedule. Override cadence with `plugins.entries.memory-core.config.dreaming.frequency` as a cron expression (for example `0 3 * * *`) and fine-tune with `timezone`, `limit`, `minScore`, `minRecallCount`, and `minUniqueQueries`. +- Set `plugins.entries.memory-core.config.dreaming.verboseLogging` to `true` to emit per-run candidate and apply details into the normal gateway logs while tuning the feature. diff --git a/docs/concepts/memory-dreaming.md b/docs/concepts/memory-dreaming.md index 0d7e20e88..53edf7a84 100644 --- a/docs/concepts/memory-dreaming.md +++ b/docs/concepts/memory-dreaming.md @@ -82,6 +82,7 @@ You can still tune behavior with explicit overrides such as: - `dreaming.minScore` - `dreaming.minRecallCount` - `dreaming.minUniqueQueries` +- `dreaming.verboseLogging` ## Configure diff --git a/docs/gateway/configuration-reference.md b/docs/gateway/configuration-reference.md index cb688ac4f..b64655632 100644 --- a/docs/gateway/configuration-reference.md +++ b/docs/gateway/configuration-reference.md @@ -2649,6 +2649,7 @@ See [Local Models](/gateway/local-models). TL;DR: run a large local model via LM - `minScore`: minimum weighted score threshold for promotion. - `minRecallCount`: minimum recall count threshold. - `minUniqueQueries`: minimum distinct query count threshold. + - `verboseLogging`: emit detailed per-run dreaming logs into the normal gateway log stream. - Enabled Claude bundle plugins can also contribute embedded Pi defaults from `settings.json`; OpenClaw applies those as sanitized agent settings, not as raw OpenClaw config patches. - `plugins.slots.memory`: pick the active memory plugin id, or `"none"` to disable memory plugins. - `plugins.slots.contextEngine`: pick the active context engine plugin id; defaults to `"legacy"` unless you install and select another engine. diff --git a/docs/reference/memory-config.md b/docs/reference/memory-config.md index a8f78e4b3..8a7b5a5e5 100644 --- a/docs/reference/memory-config.md +++ b/docs/reference/memory-config.md @@ -379,15 +379,16 @@ Dreaming is configured under `plugins.entries.memory-core.config.dreaming`, not under `agents.defaults.memorySearch`. For conceptual details and chat commands, see [Dreaming](/concepts/memory-dreaming). -| Key | Type | Default | Description | -| ------------------ | -------- | -------------- | ----------------------------------------- | -| `mode` | `string` | `"off"` | Preset: `off`, `core`, `rem`, or `deep` | -| `cron` | `string` | preset default | Cron expression override for the schedule | -| `timezone` | `string` | user timezone | Timezone for schedule evaluation | -| `limit` | `number` | preset default | Max candidates to promote per cycle | -| `minScore` | `number` | preset default | Minimum weighted score for promotion | -| `minRecallCount` | `number` | preset default | Minimum recall count threshold | -| `minUniqueQueries` | `number` | preset default | Minimum distinct query count threshold | +| Key | Type | Default | Description | +| ------------------ | --------- | -------------- | ----------------------------------------- | +| `mode` | `string` | `"off"` | Preset: `off`, `core`, `rem`, or `deep` | +| `cron` | `string` | preset default | Cron expression override for the schedule | +| `timezone` | `string` | user timezone | Timezone for schedule evaluation | +| `limit` | `number` | preset default | Max candidates to promote per cycle | +| `minScore` | `number` | preset default | Minimum weighted score for promotion | +| `minRecallCount` | `number` | preset default | Minimum recall count threshold | +| `minUniqueQueries` | `number` | preset default | Minimum distinct query count threshold | +| `verboseLogging` | `boolean` | `false` | Emit detailed per-run dreaming logs | ### Preset defaults