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

推荐订阅源

量子位
F
Fortinet All Blogs
小众软件
小众软件
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Microsoft Azure Blog
Microsoft Azure Blog
J
Java Code Geeks
有赞技术团队
有赞技术团队
D
DataBreaches.Net
Hugging Face - Blog
Hugging Face - Blog
V
Visual Studio Blog
A
About on SuperTechFans
I
InfoQ
The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
雷峰网
雷峰网
H
Hackread – Cybersecurity News, Data Breaches, AI and More
罗磊的独立博客
C
Check Point Blog
大猫的无限游戏
大猫的无限游戏
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
酷 壳 – CoolShell
酷 壳 – CoolShell
MyScale Blog
MyScale Blog

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
chore(deadcode): remove memory wiki helper shims · opencl...
vincentkoc · 2026-06-20 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -12,7 +12,6 @@ import { stateMigrations } from "./doctor-contract-api.js";

1212

import {

1313

createMemoryWikiImportRunStateStore,

1414

readMemoryWikiImportRunRecord,

15-

resolveMemoryWikiImportRunRecordPath,

1615

} from "./src/import-runs-state.js";

1716

import {

1817

createMemoryWikiSourceSyncStateStore,

@@ -28,6 +27,10 @@ async function makeTempDir(): Promise<string> {

2827

return dir;

2928

}

3029
30+

function resolveLegacyImportRunRecordPath(vaultRoot: string, runId: string): string {

31+

return path.join(vaultRoot, ".openclaw-wiki", "import-runs", `${runId}.json`);

32+

}

33+
3134

function migrationParams(params: { stateDir: string; vaultRoot: string }) {

3235

const env = { ...process.env, HOME: params.stateDir, OPENCLAW_STATE_DIR: params.stateDir };

3336

return {

@@ -120,7 +123,7 @@ describe("memory-wiki doctor source sync migration", () => {

120123

it("detects and migrates legacy import-run records into plugin state", async () => {

121124

const stateDir = await makeTempDir();

122125

const vaultRoot = path.join(stateDir, "vault");

123-

const legacyPath = resolveMemoryWikiImportRunRecordPath(vaultRoot, "chatgpt-alpha");

126+

const legacyPath = resolveLegacyImportRunRecordPath(vaultRoot, "chatgpt-alpha");

124127

const snapshotPath = path.join(

125128

vaultRoot,

126129

".openclaw-wiki",

Original file line numberDiff line numberDiff line change

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

1414

runWikiStatus,

1515

} from "./cli.js";

1616

import type { MemoryWikiPluginConfig } from "./config.js";

17-

import { resolveMemoryWikiImportRunRecordPath } from "./import-runs-state.js";

1817

import { parseWikiMarkdown, renderWikiMarkdown } from "./markdown.js";

1918

import type { MemoryWikiDoctorReport, MemoryWikiStatus } from "./status.js";

2019

import { createMemoryWikiTestHarness } from "./test-helpers.js";

@@ -30,6 +29,10 @@ let suiteRoot = "";

3029

let caseIndex = 0;

3130

let stdoutWriteMock: ReturnType<typeof vi.fn>;

3231
32+

function resolveLegacyImportRunRecordPath(vaultRoot: string, runId: string): string {

33+

return path.join(vaultRoot, ".openclaw-wiki", "import-runs", `${runId}.json`);

34+

}

35+
3336

describe("memory-wiki cli", () => {

3437

beforeAll(async () => {

3538

suiteRoot = await fs.mkdtemp(path.join(os.tmpdir(), "memory-wiki-cli-suite-"));

@@ -636,7 +639,7 @@ cli note

636639

expect(applied.runId).toMatch(/^chatgpt-[a-f0-9]{12}$/u);

637640

expect(applied.createdCount).toBe(1);

638641

await expect(

639-

fs.stat(resolveMemoryWikiImportRunRecordPath(rootDir, applied.runId ?? "")),

642+

fs.stat(resolveLegacyImportRunRecordPath(rootDir, applied.runId ?? "")),

640643

).rejects.toMatchObject({ code: "ENOENT" });

641644

const sourceFiles = (await fs.readdir(path.join(rootDir, "sources"))).filter(

642645

(entry) => entry !== "index.md",

Original file line numberDiff line numberDiff line change

@@ -66,10 +66,6 @@ export function resolveMemoryWikiImportRunsDir(vaultRoot: string): string {

6666

return path.join(vaultRoot, ".openclaw-wiki", "import-runs");

6767

}

6868
69-

export function resolveMemoryWikiImportRunRecordPath(vaultRoot: string, runId: string): string {

70-

return path.join(resolveMemoryWikiImportRunsDir(vaultRoot), `${runId}.json`);

71-

}

72-
7369

function resolveVaultRootKey(vaultRoot: string): string {

7470

return createHash("sha256").update(path.resolve(vaultRoot), "utf8").digest("hex").slice(0, 32);

7571

}

Original file line numberDiff line numberDiff line change

@@ -4,7 +4,7 @@ import os from "node:os";

44

import path from "node:path";

55

import { afterAll, beforeAll, describe, expect, it } from "vitest";

66

import { resolveMemoryWikiConfig } from "./config.js";

7-

import { buildWikiPromptSection, createWikiPromptSectionBuilder } from "./prompt-section.js";

7+

import { createWikiPromptSectionBuilder } from "./prompt-section.js";

88
99

let suiteRoot = "";

1010

@@ -18,9 +18,16 @@ afterAll(async () => {

1818

}

1919

});

2020
21-

describe("buildWikiPromptSection", () => {

21+

const buildDefaultWikiPromptSection = createWikiPromptSectionBuilder(

22+

resolveMemoryWikiConfig({

23+

vault: { path: "" },

24+

context: { includeCompiledDigestPrompt: false },

25+

}),

26+

);

27+
28+

describe("default wiki prompt section", () => {

2229

it("prefers shared memory corpus guidance when memory tools are available", () => {

23-

const lines = buildWikiPromptSection({

30+

const lines = buildDefaultWikiPromptSection({

2431

availableTools: new Set(["memory_search", "memory_get", "wiki_search", "wiki_get"]),

2532

});

2633

@@ -30,7 +37,9 @@ describe("buildWikiPromptSection", () => {

3037

});

3138
3239

it("stays empty when no wiki or memory-adjacent tools are registered", () => {

33-

expect(buildWikiPromptSection({ availableTools: new Set(["web_search"]) })).toStrictEqual([]);

40+

expect(

41+

buildDefaultWikiPromptSection({ availableTools: new Set(["web_search"]) }),

42+

).toStrictEqual([]);

3443

});

3544
3645

it("can append a compact compiled digest snapshot when enabled", async () => {

Original file line numberDiff line numberDiff line change

@@ -2,7 +2,7 @@

22

import fs from "node:fs";

33

import path from "node:path";

44

import type { MemoryPromptSectionBuilder } from "openclaw/plugin-sdk/memory-host-core";

5-

import { resolveMemoryWikiConfig, type ResolvedMemoryWikiConfig } from "./config.js";

5+

import type { ResolvedMemoryWikiConfig } from "./config.js";

66
77

const AGENT_DIGEST_PATH = ".openclaw-wiki/cache/agent-digest.json";

88

const DIGEST_MAX_PAGES = 4;

@@ -226,11 +226,3 @@ export function createWikiPromptSectionBuilder(

226226

return [...toolGuidance, ...digestLines];

227227

};

228228

}

229-
230-

export const buildWikiPromptSection: MemoryPromptSectionBuilder = ({ availableTools }) =>

231-

createWikiPromptSectionBuilder(

232-

resolveMemoryWikiConfig({

233-

vault: { path: "" },

234-

context: { includeCompiledDigestPrompt: false },

235-

}),

236-

)({ availableTools });