惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 三生石上(FineUI控件)
D
Docker
GbyAI
GbyAI
宝玉的分享
宝玉的分享
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Vercel News
Vercel News
博客园_首页
Recent Announcements
Recent Announcements
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Hugging Face - Blog
Hugging Face - Blog
腾讯CDC
S
SegmentFault 最新的问题
Microsoft Security Blog
Microsoft Security Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
美团技术团队
V
V2EX
WordPress大学
WordPress大学
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
Visual Studio Blog
IT之家
IT之家
Apple Machine Learning Research
Apple Machine Learning Research
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(memory): stop recall tracking when dreaming is disabl...
NianJiuZst · 2026-05-21 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -11,6 +11,7 @@ Docs: https://docs.openclaw.ai

1111
1212

### Fixes

1313
14+

- Memory/search: stop recall tracking from writing dreaming side-effect artifacts when `dreaming.enabled=false`, while preserving normal search results. Fixes #84436. (#84444) Thanks @NianJiuZst.

1415

- fix(config): validate browser sandbox bind sources [AI]. (#84799) Thanks @pgondhi987.

1516

- doctor: constrain legacy plugin cleanup paths [AI]. (#84801) Thanks @pgondhi987.

1617

- Update/doctor: prune stale local bundled plugin install records that point at old compiled bundled output so current bundled plugin schemas win after upgrade. (#84863) Thanks @fuller-stack-dev.

Original file line numberDiff line numberDiff line change

@@ -3,7 +3,10 @@ import fs from "node:fs/promises";

33

import os from "node:os";

44

import path from "node:path";

55

import type { MemoryEmbeddingProbeResult } from "openclaw/plugin-sdk/memory-core-host-engine-storage";

6-

import { resolveMemoryRemDreamingConfig } from "openclaw/plugin-sdk/memory-core-host-status";

6+

import {

7+

resolveMemoryDreamingConfig,

8+

resolveMemoryRemDreamingConfig,

9+

} from "openclaw/plugin-sdk/memory-core-host-status";

710

import { buildAgentSessionKey } from "openclaw/plugin-sdk/routing";

811

import { resolvePreferredOpenClawTmpDir } from "openclaw/plugin-sdk/temp-path";

912

import {

@@ -1202,8 +1205,13 @@ export async function runMemorySearch(

12021205

const { config: cfg, diagnostics } = await loadMemoryCommandConfig("memory search");

12031206

emitMemorySecretResolveDiagnostics(diagnostics, { json: Boolean(opts.json) });

12041207

const agentId = resolveAgent(cfg, opts.agent);

1208+

const memoryPluginConfig = resolveMemoryPluginConfig(cfg);

1209+

const dreamingEnabled = resolveMemoryDreamingConfig({

1210+

pluginConfig: memoryPluginConfig,

1211+

cfg,

1212+

}).enabled;

12051213

const dreaming = resolveShortTermPromotionDreamingConfig({

1206-

pluginConfig: resolveMemoryPluginConfig(cfg),

1214+

pluginConfig: memoryPluginConfig,

12071215

cfg,

12081216

});

12091217

await withMemoryManagerForAgent({

@@ -1229,14 +1237,16 @@ export async function runMemorySearch(

12291237

typeof (manager as { status?: () => { workspaceDir?: string } }).status === "function"

12301238

? manager.status().workspaceDir

12311239

: undefined;

1232-

void recordShortTermRecalls({

1233-

workspaceDir,

1234-

query,

1235-

results,

1236-

timezone: dreaming.timezone,

1237-

}).catch(() => {

1238-

// Recall tracking is best-effort and must not block normal search results.

1239-

});

1240+

if (dreamingEnabled) {

1241+

void recordShortTermRecalls({

1242+

workspaceDir,

1243+

query,

1244+

results,

1245+

timezone: dreaming.timezone,

1246+

}).catch(() => {

1247+

// Recall tracking is best-effort and must not block normal search results.

1248+

});

1249+

}

12401250

if (opts.json) {

12411251

defaultRuntime.writeJson({ results });

12421252

return;

Original file line numberDiff line numberDiff line change

@@ -1896,6 +1896,19 @@ describe("memory cli", () => {

18961896

source: "memory",

18971897

},

18981898

]);

1899+

getRuntimeConfig.mockReturnValue({

1900+

plugins: {

1901+

entries: {

1902+

"memory-core": {

1903+

config: {

1904+

dreaming: {

1905+

enabled: true,

1906+

},

1907+

},

1908+

},

1909+

},

1910+

},

1911+

});

18991912

mockManager({

19001913

search,

19011914

status: () => makeMemoryStatus({ workspaceDir }),

@@ -1968,4 +1981,52 @@ describe("memory cli", () => {

19681981

expect(close).toHaveBeenCalled();

19691982

});

19701983

});

1984+
1985+

it("does not record short-term recall entries from memory search when dreaming is disabled", async () => {

1986+

await withTempWorkspace(async (workspaceDir) => {

1987+

const close = vi.fn(async () => {});

1988+

const search = vi.fn(async () => [

1989+

{

1990+

path: "memory/2026-04-03.md",

1991+

startLine: 1,

1992+

endLine: 2,

1993+

score: 0.91,

1994+

snippet: "Move backups to S3 Glacier.",

1995+

source: "memory",

1996+

},

1997+

]);

1998+

getRuntimeConfig.mockReturnValue({

1999+

plugins: {

2000+

entries: {

2001+

"memory-core": {

2002+

config: {

2003+

dreaming: {

2004+

enabled: false,

2005+

},

2006+

},

2007+

},

2008+

},

2009+

},

2010+

});

2011+

mockManager({

2012+

search,

2013+

status: () => makeMemoryStatus({ workspaceDir }),

2014+

close,

2015+

});

2016+
2017+

const writeJson = spyRuntimeJson(defaultRuntime);

2018+

await runMemoryCli(["search", "glacier", "--json"]);

2019+
2020+

const payload = firstWrittenJsonArg<{ results: Array<{ path: string }> }>(writeJson);

2021+

if (!payload) {

2022+

throw new Error("Expected memory search JSON payload");

2023+

}

2024+

expect(payload.results).toHaveLength(1);

2025+

expect(payload.results[0]?.path).toBe("memory/2026-04-03.md");

2026+

await expectPathMissing(

2027+

path.join(workspaceDir, "memory", ".dreams", "short-term-recall.json"),

2028+

);

2029+

expect(close).toHaveBeenCalled();

2030+

});

2031+

});

19712032

});

Original file line numberDiff line numberDiff line change

@@ -247,7 +247,22 @@ describe("memory tools", () => {

247247

},

248248

]);

249249
250-

const tool = createMemorySearchToolOrThrow();

250+

const tool = createMemorySearchToolOrThrow({

251+

config: asOpenClawConfig({

252+

agents: { list: [{ id: "main", default: true }] },

253+

plugins: {

254+

entries: {

255+

"memory-core": {

256+

config: {

257+

dreaming: {

258+

enabled: true,

259+

},

260+

},

261+

},

262+

},

263+

},

264+

}),

265+

});

251266

await tool.execute("call_recall_persist", { query: "glacier backup" });

252267
253268

const storePath = path.join(workspaceDir, "memory", ".dreams", "short-term-recall.json");

Original file line numberDiff line numberDiff line change

@@ -67,6 +67,17 @@ describe("memory_search recall tracking", () => {

6767

const tool = createSearchTool(

6868

asOpenClawConfig({

6969

agents: { list: [{ id: "main", default: true }] },

70+

plugins: {

71+

entries: {

72+

"memory-core": {

73+

config: {

74+

dreaming: {

75+

enabled: true,

76+

},

77+

},

78+

},

79+

},

80+

},

7081

memory: {

7182

backend: "qmd",

7283

citations: "on",

@@ -103,6 +114,17 @@ describe("memory_search recall tracking", () => {

103114

const tool = createSearchTool(

104115

asOpenClawConfig({

105116

agents: { list: [{ id: "main", default: true }] },

117+

plugins: {

118+

entries: {

119+

"memory-core": {

120+

config: {

121+

dreaming: {

122+

enabled: true,

123+

},

124+

},

125+

},

126+

},

127+

},

106128

}),

107129

);

108130

setMemorySearchImpl(async () => [

@@ -164,6 +186,7 @@ describe("memory_search recall tracking", () => {

164186

"memory-core": {

165187

config: {

166188

dreaming: {

189+

enabled: true,

167190

timezone: "Europe/London",

168191

},

169192

},

@@ -179,4 +202,40 @@ describe("memory_search recall tracking", () => {

179202

const [firstCall] = recallTrackingMock.recordShortTermRecalls.mock.calls;

180203

expect(firstCall?.[0]?.timezone).toBe("Europe/London");

181204

});

205+
206+

it("skips recall tracking when dreaming is disabled", async () => {

207+

setMemorySearchImpl(async () => [

208+

{

209+

path: "memory/2026-04-03.md",

210+

startLine: 1,

211+

endLine: 2,

212+

score: 0.95,

213+

snippet: "Move backups to S3 Glacier.",

214+

source: "memory" as const,

215+

},

216+

]);

217+
218+

const tool = createSearchTool(

219+

asOpenClawConfig({

220+

agents: { list: [{ id: "main", default: true }] },

221+

plugins: {

222+

entries: {

223+

"memory-core": {

224+

config: {

225+

dreaming: {

226+

enabled: false,

227+

},

228+

},

229+

},

230+

},

231+

},

232+

}),

233+

);

234+
235+

const result = await tool.execute("call_recall_disabled", { query: "glacier" });

236+

const details = result.details as { results: Array<{ path: string }> };

237+

expect(details.results).toHaveLength(1);

238+

expect(details.results[0]?.path).toBe("memory/2026-04-03.md");

239+

expect(recallTrackingMock.recordShortTermRecalls).not.toHaveBeenCalled();

240+

});

182241

});

Original file line numberDiff line numberDiff line change

@@ -14,6 +14,7 @@ import type {

1414

} from "openclaw/plugin-sdk/memory-core-host-runtime-files";

1515

import {

1616

resolveMemoryCorePluginConfig,

17+

resolveMemoryDreamingConfig,

1718

resolveMemoryDeepDreamingConfig,

1819

} from "openclaw/plugin-sdk/memory-core-host-status";

1920

import { filterMemorySearchHitsBySessionVisibility } from "./session-search-visibility.js";

@@ -265,6 +266,15 @@ export function createMemorySearchTool(options: {

265266

mode: citationsMode,

266267

sessionKey: options.agentSessionKey,

267268

});

269+

const pluginConfig = resolveMemoryCorePluginConfig(cfg);

270+

const dreamingEnabled = resolveMemoryDreamingConfig({

271+

pluginConfig,

272+

cfg,

273+

}).enabled;

274+

const dreaming = resolveMemoryDeepDreamingConfig({

275+

pluginConfig,

276+

cfg,

277+

});

268278

const searchStartedAt = Date.now();

269279

let rawResults: MemorySearchResult[] = [];

270280

let surfacedMemoryResults: Array<MemorySearchResult & { corpus: MemorySource }> = [];

@@ -327,17 +337,15 @@ export function createMemorySearchTool(options: {

327337

...result,

328338

corpus: result.source,

329339

}));

330-

const sleepTimezone = resolveMemoryDeepDreamingConfig({

331-

pluginConfig: resolveMemoryCorePluginConfig(cfg),

332-

cfg,

333-

}).timezone;

334-

queueShortTermRecallTracking({

335-

workspaceDir: status.workspaceDir,

336-

query,

337-

rawResults,

338-

surfacedResults: memoryResults,

339-

timezone: sleepTimezone,

340-

});

340+

if (dreamingEnabled) {

341+

queueShortTermRecallTracking({

342+

workspaceDir: status.workspaceDir,

343+

query,

344+

rawResults,

345+

surfacedResults: memoryResults,

346+

timezone: dreaming.timezone,

347+

});

348+

}

341349

provider = status.provider;

342350

model = status.model;

343351

fallback = status.fallback;