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

推荐订阅源

Vercel News
Vercel News
博客园 - 司徒正美
C
Check Point Blog
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
P
Proofpoint News Feed
IT之家
IT之家
B
Blog
博客园_首页
量子位
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
J
Java Code Geeks
H
Help Net Security
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
D
DataBreaches.Net
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News

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
test: lock qmd backend collections · openclaw/openclaw@be...
shakkernerd · 2026-05-12 · via Recent Commits to openclaw:main

@@ -42,8 +42,8 @@ const rootMemoryConfig = (workspaceDir: string): OpenClawConfig =>

4242

},

4343

}) as OpenClawConfig;

444445-

const collectionNames = (resolved: ResolvedMemoryBackendConfig): Set<string> =>

46-

new Set((resolved.qmd?.collections ?? []).map((collection) => collection.name));

45+

const collectionNames = (resolved: ResolvedMemoryBackendConfig): string[] =>

46+

(resolved.qmd?.collections ?? []).map((collection) => collection.name).toSorted();

47474848

function requireQmdConfig(

4949

resolved: ResolvedMemoryBackendConfig,

@@ -73,7 +73,9 @@ const customQmdCollections = (

7373

(resolved.qmd?.collections ?? []).filter((collection) => collection.kind === "custom");

74747575

const customCollectionPaths = (resolved: ResolvedMemoryBackendConfig): string[] =>

76-

customQmdCollections(resolved).map((collection) => collection.path);

76+

customQmdCollections(resolved)

77+

.map((collection) => collection.path)

78+

.toSorted();

77797880

let fixtureRoot: string;

7981

let fixtureId = 0;

@@ -125,10 +127,7 @@ describe("resolveMemoryBackendConfig", () => {

125127

expect(qmd.update.commandTimeoutMs).toBe(30_000);

126128

expect(qmd.update.updateTimeoutMs).toBe(120_000);

127129

expect(qmd.update.embedTimeoutMs).toBe(120_000);

128-

const names = new Set(qmd.collections.map((collection) => collection.name));

129-

expect(names.has("memory-root-main")).toBe(true);

130-

expect(names.has("memory-dir-main")).toBe(true);

131-

expect(names.has("memory-alt-main")).toBe(false);

130+

expect(collectionNames(resolved)).toStrictEqual(["memory-dir-main", "memory-root-main"]);

132131

expect(requireQmdCollection(resolved, "memory-root-main").pattern).toBe("MEMORY.md");

133132

});

134133

@@ -138,7 +137,7 @@ describe("resolveMemoryBackendConfig", () => {

138137

const cfg = rootMemoryConfig(workspaceDir);

139138

const resolved = resolveMemoryBackendConfig({ cfg, agentId: "main" });

140139

expect(requireQmdCollection(resolved, "memory-root-main").pattern).toBe("MEMORY.md");

141-

expect(collectionNames(resolved).has("memory-alt-main")).toBe(false);

140+

expect(collectionNames(resolved)).toStrictEqual(["memory-dir-main", "memory-root-main"]);

142141

});

143142

});

144143

@@ -148,7 +147,7 @@ describe("resolveMemoryBackendConfig", () => {

148147

const cfg = rootMemoryConfig(workspaceDir);

149148

const resolved = resolveMemoryBackendConfig({ cfg, agentId: "main" });

150149

expect(requireQmdCollection(resolved, "memory-root-main").pattern).toBe("MEMORY.md");

151-

expect(collectionNames(resolved).has("memory-alt-main")).toBe(false);

150+

expect(collectionNames(resolved)).toStrictEqual(["memory-dir-main", "memory-root-main"]);

152151

});

153152

});

154153

@@ -216,10 +215,8 @@ describe("resolveMemoryBackendConfig", () => {

216215

const devResolved = resolveMemoryBackendConfig({ cfg, agentId: "dev" });

217216

const mainNames = collectionNames(mainResolved);

218217

const devNames = collectionNames(devResolved);

219-

expect(mainNames.has("memory-dir-main")).toBe(true);

220-

expect(devNames.has("memory-dir-dev")).toBe(true);

221-

expect(mainNames.has("workspace-main")).toBe(true);

222-

expect(devNames.has("workspace-dev")).toBe(true);

218+

expect(mainNames).toStrictEqual(["memory-dir-main", "memory-root-main", "workspace-main"]);

219+

expect(devNames).toStrictEqual(["memory-dir-dev", "memory-root-dev", "workspace-dev"]);

223220

});

224221225222

it("merges default and per-agent qmd extra collections", () => {

@@ -267,8 +264,7 @@ describe("resolveMemoryBackendConfig", () => {

267264

} as OpenClawConfig;

268265

const resolved = resolveMemoryBackendConfig({ cfg, agentId: "main" });

269266

const names = collectionNames(resolved);

270-

expect(names.has("team-notes")).toBe(true);

271-

expect(names.has("notes-main")).toBe(true);

267+

expect(names).toStrictEqual(["notes-main", "team-notes"]);

272268

});

273269274270

it("preserves explicit custom collection names for paths outside the workspace", () => {

@@ -292,10 +288,8 @@ describe("resolveMemoryBackendConfig", () => {

292288

const devResolved = resolveMemoryBackendConfig({ cfg, agentId: "dev" });

293289

const mainNames = collectionNames(mainResolved);

294290

const devNames = collectionNames(devResolved);

295-

expect(mainNames.has("memory-dir-main")).toBe(true);

296-

expect(devNames.has("memory-dir-dev")).toBe(true);

297-

expect(mainNames.has("notion-mirror")).toBe(true);

298-

expect(devNames.has("notion-mirror")).toBe(true);

291+

expect(mainNames).toStrictEqual(["memory-dir-main", "memory-root-main", "notion-mirror"]);

292+

expect(devNames).toStrictEqual(["memory-dir-dev", "memory-root-dev", "notion-mirror"]);

299293

});

300294301295

it("keeps symlinked workspace paths agent-scoped when deciding custom collection names", async () => {

@@ -319,8 +313,7 @@ describe("resolveMemoryBackendConfig", () => {

319313

} as OpenClawConfig;

320314

const resolved = resolveMemoryBackendConfig({ cfg, agentId: "main" });

321315

const names = collectionNames(resolved);

322-

expect(names.has("workspace-main")).toBe(true);

323-

expect(names.has("workspace")).toBe(false);

316+

expect(names).toStrictEqual(["workspace-main"]);

324317

});

325318326319

it("keeps unresolved child paths under a symlinked workspace agent-scoped", async () => {

@@ -348,8 +341,7 @@ describe("resolveMemoryBackendConfig", () => {

348341

} as OpenClawConfig;

349342

const resolved = resolveMemoryBackendConfig({ cfg, agentId: "main" });

350343

const names = collectionNames(resolved);

351-

expect(names.has("notes-main")).toBe(true);

352-

expect(names.has("notes")).toBe(false);

344+

expect(names).toStrictEqual(["notes-main"]);

353345

});

354346355347

it("resolves qmd update timeout overrides", () => {

@@ -443,9 +435,10 @@ describe("memorySearch.extraPaths integration", () => {

443435

const result = resolveMemoryBackendConfig({ cfg, agentId: "test-agent" });

444436

expect(result.backend).toBe("qmd");

445437

const paths = customCollectionPaths(result);

446-

expect(paths.length).toBeGreaterThanOrEqual(2);

447-

expect(paths).toContain(resolveComparablePath("/home/user/docs"));

448-

expect(paths).toContain(resolveComparablePath("/home/user/vault"));

438+

expect(paths).toStrictEqual([

439+

resolveComparablePath("/home/user/docs"),

440+

resolveComparablePath("/home/user/vault"),

441+

]);

449442

});

450443451444

it("merges default and per-agent memorySearch.extraPaths for QMD collections", () => {

@@ -471,8 +464,10 @@ describe("memorySearch.extraPaths integration", () => {

471464

const result = resolveMemoryBackendConfig({ cfg, agentId: "my-agent" });

472465

expect(result.backend).toBe("qmd");

473466

const paths = customCollectionPaths(result);

474-

expect(paths).toContain(resolveComparablePath("/agent/specific/path"));

475-

expect(paths).toContain(resolveComparablePath("/default/path"));

467+

expect(paths).toStrictEqual([

468+

resolveComparablePath("/agent/specific/path"),

469+

resolveComparablePath("/default/path"),

470+

]);

476471

});

477472478473

it("falls back to defaults when agent has no overrides", () => {

@@ -498,7 +493,7 @@ describe("memorySearch.extraPaths integration", () => {

498493

const result = resolveMemoryBackendConfig({ cfg, agentId: "my-agent" });

499494

expect(result.backend).toBe("qmd");

500495

const paths = customCollectionPaths(result);

501-

expect(paths).toContain(resolveComparablePath("/default/path"));

496+

expect(paths).toStrictEqual([resolveComparablePath("/default/path")]);

502497

});

503498504499

it("deduplicates merged memorySearch.extraPaths for QMD collections", () => {

@@ -525,10 +520,10 @@ describe("memorySearch.extraPaths integration", () => {

525520

const result = resolveMemoryBackendConfig({ cfg, agentId: "my-agent" });

526521

const paths = customCollectionPaths(result);

527522528-

expect(

529-

paths.filter((collectionPath) => collectionPath === resolveComparablePath("/shared/path")),

530-

).toHaveLength(1);

531-

expect(paths).toContain(resolveComparablePath("/agent-only"));

523+

expect(paths).toStrictEqual([

524+

resolveComparablePath("/agent-only"),

525+

resolveComparablePath("/shared/path"),

526+

]);

532527

});

533528534529

it("keeps unnamed extra paths agent-scoped even when they resolve outside the workspace", () => {

@@ -544,9 +539,9 @@ describe("memorySearch.extraPaths integration", () => {

544539

},

545540

} as OpenClawConfig;

546541

const result = resolveMemoryBackendConfig({ cfg, agentId: "my-agent" });

547-

expect(customQmdCollections(result).map((collection) => collection.name)).toContain(

542+

expect(customQmdCollections(result).map((collection) => collection.name)).toStrictEqual([

548543

"custom-1-my-agent",

549-

);

544+

]);

550545

});

551546552547

it("matches per-agent memorySearch.extraPaths using normalized agent ids", () => {

@@ -569,7 +564,9 @@ describe("memorySearch.extraPaths integration", () => {

569564570565

const result = resolveMemoryBackendConfig({ cfg, agentId: "my-agent" });

571566572-

expect(customCollectionPaths(result)).toContain(resolveComparablePath("/agent/mixed-case"));

567+

expect(customCollectionPaths(result)).toStrictEqual([

568+

resolveComparablePath("/agent/mixed-case"),

569+

]);

573570

});

574571575572

it("deduplicates identical roots shared by memory.qmd.paths and memorySearch.extraPaths", () => {