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

推荐订阅源

量子位
F
Fortinet All Blogs
J
Java Code Geeks
Y
Y Combinator Blog
Stack Overflow Blog
Stack Overflow Blog
V
Visual Studio Blog
M
MIT News - Artificial intelligence
腾讯CDC
Last Week in AI
Last Week in AI
The Cloudflare Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Jina AI
Jina AI
Microsoft Security Blog
Microsoft Security Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
P
Proofpoint News Feed
博客园 - 叶小钗
Recent Announcements
Recent Announcements
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
人人都是产品经理
人人都是产品经理
L
LangChain Blog
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

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
Doctor: expose session artifact findings (#95976) · openc...
giodl73-repo · 2026-06-25 · via Recent Commits to openclaw:main

@@ -15,8 +15,11 @@ vi.mock("../../packages/terminal-core/src/note.js", () => ({

1515

}));

16161717

import {

18+

detectSessionSnapshotHealthIssues,

1819

noteSessionSnapshotHealth,

1920

scanSessionStoreForStaleRuntimeSnapshotPaths,

21+

sessionSnapshotIssueToHealthFinding,

22+

sessionSnapshotIssueToRepairEffect,

2023

} from "./doctor-session-snapshots.js";

21242225

function sessionEntry(patch: Partial<SessionEntry>): SessionEntry {

@@ -66,6 +69,23 @@ async function writeSessionStore(

6669

await fs.writeFile(storePath, JSON.stringify(store, null, 2));

6770

}

687172+

function readMainSessionEntry(raw: string): SessionEntry {

73+

const parsed = JSON.parse(raw) as Record<string, SessionEntry>;

74+

const entry = parsed["agent:main"];

75+

if (!entry) {

76+

throw new Error("expected agent:main session entry");

77+

}

78+

return entry;

79+

}

80+81+

function readMainSkillsSnapshot(raw: string): NonNullable<SessionEntry["skillsSnapshot"]> {

82+

const snapshot = readMainSessionEntry(raw).skillsSnapshot;

83+

if (!snapshot) {

84+

throw new Error("expected agent:main skills snapshot");

85+

}

86+

return snapshot;

87+

}

88+6989

describe("doctor session snapshot stale runtime metadata", () => {

7090

let root = "";

7191

let bundledSkillsDir = "";

@@ -135,6 +155,57 @@ describe("doctor session snapshot stale runtime metadata", () => {

135155

]);

136156

});

137157158+

it("maps stale snapshot paths to structured findings and dry-run effects", async () => {

159+

const stalePath = path.join(

160+

root,

161+

"old-runtime",

162+

"node_modules",

163+

"openclaw",

164+

"skills",

165+

"doctor",

166+

"SKILL.md",

167+

);

168+

const storePath = path.join(root, "state", "agents", "main", "sessions", "sessions.json");

169+

await writeSessionStore(storePath, {

170+

"agent:main": sessionEntry({

171+

skillsSnapshot: {

172+

prompt: skillPrompt(stalePath),

173+

skills: [{ name: "doctor" }],

174+

},

175+

}),

176+

});

177+178+

const [issue] = await detectSessionSnapshotHealthIssues({

179+

storePaths: [storePath],

180+

bundledSkillsDir,

181+

});

182+183+

if (!issue) {

184+

throw new Error("expected session snapshot health issue");

185+

}

186+

expect(issue).toMatchObject({

187+

storePath,

188+

sessionKey: "agent:main",

189+

field: "skillsSnapshot.prompt",

190+

cachedPath: stalePath,

191+

expectedPath: path.join(bundledSkillsDir, "doctor", "SKILL.md"),

192+

});

193+

expect(sessionSnapshotIssueToHealthFinding(issue)).toMatchObject({

194+

checkId: "core/doctor/session-snapshots",

195+

severity: "info",

196+

path: storePath,

197+

target: stalePath,

198+

requirement: expect.stringContaining(bundledSkillsDir),

199+

fixHint: expect.stringContaining("openclaw doctor --fix"),

200+

});

201+

expect(sessionSnapshotIssueToRepairEffect(issue)).toEqual({

202+

kind: "file",

203+

action: "would-rewrite-session-snapshot-path",

204+

target: storePath,

205+

dryRunSafe: false,

206+

});

207+

});

208+138209

it("expands home-relative cached bundled skill locations before classifying them", () => {

139210

const homeDir = path.join(root, "home");

140211

const stalePath = "~/old-runtime/node_modules/openclaw/skills/doctor/SKILL.md";

@@ -456,8 +527,9 @@ describe("doctor session snapshot repair (shouldRepair)", () => {

456527

});

457528458529

const raw = await fs.readFile(storePath, "utf-8");

459-

expect(raw).not.toContain(stalePath);

460-

expect(raw).toContain(path.join(bundledSkillsDir, "doctor", "SKILL.md"));

530+

const snapshot = readMainSkillsSnapshot(raw);

531+

expect(snapshot.prompt).not.toContain(stalePath);

532+

expect(snapshot.prompt).toContain(path.join(bundledSkillsDir, "doctor", "SKILL.md"));

461533

expect(note).toHaveBeenCalledTimes(1);

462534

const [message] = note.mock.calls[0] as [string, string];

463535

expect(message).toContain("Repaired");

@@ -535,9 +607,13 @@ describe("doctor session snapshot repair (shouldRepair)", () => {

535607536608

const raw = await fs.readFile(storePath, "utf-8");

537609

const expectedBaseDir = path.dirname(path.join(bundledSkillsDir, "doctor", "SKILL.md"));

538-

expect(raw).toContain(path.join(bundledSkillsDir, "doctor", "SKILL.md"));

539-

expect(raw).toContain(expectedBaseDir);

540-

expect(raw).not.toContain(path.join(root, "old-runtime"));

610+

const expectedPath = path.join(bundledSkillsDir, "doctor", "SKILL.md");

611+

const snapshot = readMainSkillsSnapshot(raw);

612+

const skill = snapshot.resolvedSkills?.[0];

613+

expect(skill?.filePath).toBe(expectedPath);

614+

expect(skill?.baseDir).toBe(expectedBaseDir);

615+

expect(skill?.sourceInfo.path).toBe(expectedPath);

616+

expect(skill?.sourceInfo.baseDir).toBe(expectedBaseDir);

541617

expect(note).toHaveBeenCalledTimes(1);

542618

const [message] = note.mock.calls[0] as [string, string];

543619

expect(message).toContain("Repaired");

@@ -576,9 +652,12 @@ describe("doctor session snapshot repair (shouldRepair)", () => {

576652

});

577653578654

const raw = await fs.readFile(storePath, "utf-8");

579-

expect(raw).toContain(currentPath);

580-

expect(raw).toContain(path.dirname(currentPath));

581-

expect(raw).not.toContain(path.join(root, "old-runtime"));

655+

const snapshot = readMainSkillsSnapshot(raw);

656+

const repairedSkill = snapshot.resolvedSkills?.[0];

657+

expect(repairedSkill?.filePath).toBe(currentPath);

658+

expect(repairedSkill?.baseDir).toBe(path.dirname(currentPath));

659+

expect(repairedSkill?.sourceInfo.path).toBe(currentPath);

660+

expect(repairedSkill?.sourceInfo.baseDir).toBe(path.dirname(currentPath));

582661

expect(note).toHaveBeenCalledTimes(1);

583662

const [message] = note.mock.calls[0] as [string, string];

584663

expect(message).toContain("Repaired");

@@ -743,7 +822,8 @@ describe("doctor session snapshot repair (shouldRepair)", () => {

743822

expect(backupFiles.length).toBe(1);

744823745824

const backupContent = await fs.readFile(path.join(dir, backupFiles[0]), "utf-8");

746-

expect(backupContent).toContain(stalePath);

825+

const backupSnapshot = readMainSkillsSnapshot(backupContent);

826+

expect(backupSnapshot.prompt).toContain(stalePath);

747827

});

748828749829

it("is idempotent — second repair finds nothing", async () => {