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

推荐订阅源

WordPress大学
WordPress大学
G
Google Developers Blog
小众软件
小众软件
V
V2EX
月光博客
月光博客
腾讯CDC
aimingoo的专栏
aimingoo的专栏
J
Java Code Geeks
Y
Y Combinator Blog
人人都是产品经理
人人都是产品经理
B
Blog RSS Feed
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 【当耐特】
D
Docker
M
MIT News - Artificial intelligence
Google DeepMind News
Google DeepMind News
N
Netflix TechBlog - Medium
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
I
InfoQ
MongoDB | Blog
MongoDB | Blog
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI

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: repair skills and memory watcher refresh paths · ope...
vincentkoc · 2026-04-27 · via Recent Commits to openclaw:main

@@ -1,11 +1,34 @@

11

import os from "node:os";

22

import path from "node:path";

33

import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest";

4+

import type { SkillsChangeEvent } from "./refresh.js";

455-

const watchMock = vi.fn(() => ({

6-

on: vi.fn(),

7-

close: vi.fn(async () => undefined),

8-

}));

6+

type WatchEvent = "add" | "change" | "unlink" | "unlinkDir" | "error";

7+

type WatchCallback = (watchPath: string) => void;

8+9+

function createMockWatcher() {

10+

const handlers = new Map<WatchEvent, WatchCallback[]>();

11+

const watcher = {

12+

on: vi.fn((event: WatchEvent, callback: WatchCallback) => {

13+

handlers.set(event, [...(handlers.get(event) ?? []), callback]);

14+

return watcher;

15+

}),

16+

close: vi.fn(async () => undefined),

17+

emit: (event: WatchEvent, watchPath: string) => {

18+

for (const callback of handlers.get(event) ?? []) {

19+

callback(watchPath);

20+

}

21+

},

22+

};

23+

return watcher;

24+

}

25+26+

const createdWatchers: Array<ReturnType<typeof createMockWatcher>> = [];

27+

const watchMock = vi.fn(() => {

28+

const watcher = createMockWatcher();

29+

createdWatchers.push(watcher);

30+

return watcher;

31+

});

9321033

let refreshModule: typeof import("./refresh.js");

1134

@@ -24,13 +47,15 @@ describe("ensureSkillsWatcher", () => {

24472548

beforeEach(() => {

2649

watchMock.mockClear();

50+

createdWatchers.length = 0;

2751

});

28522953

afterEach(async () => {

54+

vi.useRealTimers();

3055

await refreshModule.resetSkillsRefreshForTest();

3156

});

325733-

it("ignores node_modules, dist, .git, and Python venvs by default", async () => {

58+

it("watches skill roots and filters non-skill churn", async () => {

3459

refreshModule.ensureSkillsWatcher({ workspaceDir: "/tmp/workspace" });

35603661

expect(watchMock).toHaveBeenCalledTimes(1);

@@ -40,49 +65,64 @@ describe("ensureSkillsWatcher", () => {

4065

const targets = firstCall?.[0] ?? [];

4166

const opts = firstCall?.[1] ?? {};

426743-

expect(opts.ignored).toBe(refreshModule.DEFAULT_SKILLS_WATCH_IGNORED);

68+

expect(opts.ignored).toBe(refreshModule.shouldIgnoreSkillsWatchPath);

4469

const posix = (p: string) => p.replaceAll("\\", "/");

4570

expect(targets).toEqual(

4671

expect.arrayContaining([

47-

posix(path.join("/tmp/workspace", "skills", "SKILL.md")),

48-

posix(path.join("/tmp/workspace", "skills", "*", "SKILL.md")),

49-

posix(path.join("/tmp/workspace", ".agents", "skills", "SKILL.md")),

50-

posix(path.join("/tmp/workspace", ".agents", "skills", "*", "SKILL.md")),

51-

posix(path.join(os.homedir(), ".agents", "skills", "SKILL.md")),

52-

posix(path.join(os.homedir(), ".agents", "skills", "*", "SKILL.md")),

72+

posix(path.join("/tmp/workspace", "skills")),

73+

posix(path.join("/tmp/workspace", ".agents", "skills")),

74+

posix(path.join(os.homedir(), ".agents", "skills")),

5375

]),

5476

);

55-

expect(targets.every((target) => target.includes("SKILL.md"))).toBe(true);

56-

const ignored = refreshModule.DEFAULT_SKILLS_WATCH_IGNORED;

77+

expect(targets.every((target) => !target.includes("*"))).toBe(true);

78+

const ignored = refreshModule.shouldIgnoreSkillsWatchPath;

57795880

// Node/JS paths

59-

expect(ignored.some((re) => re.test("/tmp/workspace/skills/node_modules/pkg/index.js"))).toBe(

60-

true,

61-

);

62-

expect(ignored.some((re) => re.test("/tmp/workspace/skills/dist/index.js"))).toBe(true);

63-

expect(ignored.some((re) => re.test("/tmp/workspace/skills/.git/config"))).toBe(true);

81+

expect(ignored("/tmp/workspace/skills/node_modules/pkg/index.js")).toBe(true);

82+

expect(ignored("/tmp/workspace/skills/dist/index.js")).toBe(true);

83+

expect(ignored("/tmp/workspace/skills/.git/config")).toBe(true);

64846585

// Python virtual environments and caches

66-

expect(ignored.some((re) => re.test("/tmp/workspace/skills/scripts/.venv/bin/python"))).toBe(

67-

true,

68-

);

69-

expect(ignored.some((re) => re.test("/tmp/workspace/skills/venv/lib/python3.10/site.py"))).toBe(

70-

true,

71-

);

72-

expect(ignored.some((re) => re.test("/tmp/workspace/skills/__pycache__/module.pyc"))).toBe(

73-

true,

74-

);

75-

expect(ignored.some((re) => re.test("/tmp/workspace/skills/.mypy_cache/3.10/foo.json"))).toBe(

76-

true,

77-

);

78-

expect(ignored.some((re) => re.test("/tmp/workspace/skills/.pytest_cache/v/cache"))).toBe(true);

86+

expect(ignored("/tmp/workspace/skills/scripts/.venv/bin/python")).toBe(true);

87+

expect(ignored("/tmp/workspace/skills/venv/lib/python3.10/site.py")).toBe(true);

88+

expect(ignored("/tmp/workspace/skills/__pycache__/module.pyc")).toBe(true);

89+

expect(ignored("/tmp/workspace/skills/.mypy_cache/3.10/foo.json")).toBe(true);

90+

expect(ignored("/tmp/workspace/skills/.pytest_cache/v/cache")).toBe(true);

79918092

// Build artifacts and caches

81-

expect(ignored.some((re) => re.test("/tmp/workspace/skills/build/output.js"))).toBe(true);

82-

expect(ignored.some((re) => re.test("/tmp/workspace/skills/.cache/data.json"))).toBe(true);

93+

expect(ignored("/tmp/workspace/skills/build/output.js")).toBe(true);

94+

expect(ignored("/tmp/workspace/skills/.cache/data.json")).toBe(true);

83958496

// Should NOT ignore normal skill files

85-

expect(ignored.some((re) => re.test("/tmp/.hidden/skills/index.md"))).toBe(false);

86-

expect(ignored.some((re) => re.test("/tmp/workspace/skills/my-skill/SKILL.md"))).toBe(false);

97+

expect(ignored("/tmp/.hidden/skills/index.md")).toBe(false);

98+

expect(ignored("/tmp/workspace/skills/my-skill", { isDirectory: () => true })).toBe(false);

99+

expect(ignored("/tmp/workspace/skills/my-skill/README.md", {})).toBe(true);

100+

expect(ignored("/tmp/workspace/skills/my-skill/SKILL.md", {})).toBe(false);

87101

});

102+103+

it.each(["add", "change", "unlink", "unlinkDir"] as const)(

104+

"refreshes skills snapshots on %s",

105+

async (event) => {

106+

vi.useFakeTimers();

107+

const seen: SkillsChangeEvent[] = [];

108+

refreshModule.registerSkillsChangeListener((change) => {

109+

seen.push(change);

110+

});

111+

refreshModule.ensureSkillsWatcher({

112+

workspaceDir: "/tmp/workspace",

113+

config: { skills: { load: { watchDebounceMs: 10 } } },

114+

});

115+116+

createdWatchers[0]?.emit(event, "/tmp/workspace/skills/demo/SKILL.md");

117+

await vi.advanceTimersByTimeAsync(10);

118+119+

expect(seen).toEqual([

120+

{

121+

workspaceDir: "/tmp/workspace",

122+

reason: "watch",

123+

changedPath: "/tmp/workspace/skills/demo/SKILL.md",

124+

},

125+

]);

126+

},

127+

);

88128

});