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

推荐订阅源

S
SegmentFault 最新的问题
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
B
Blog RSS Feed
Y
Y Combinator Blog
T
Tailwind CSS Blog
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
aimingoo的专栏
aimingoo的专栏
Jina AI
Jina AI
The GitHub Blog
The GitHub Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
A
About on SuperTechFans
H
Hackread – Cybersecurity News, Data Breaches, AI and More
D
Docker
酷 壳 – CoolShell
酷 壳 – CoolShell
C
Check Point Blog
M
MIT News - Artificial intelligence
Last Week in AI
Last Week in AI
V
V2EX
腾讯CDC
F
Fortinet All Blogs
博客园 - 叶小钗
T
The Blog of Author Tim Ferriss

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: clear reset skills snapshot (#78873) · openclaw/open...
Evizero · 2026-05-07 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

141141
142142

### Fixes

143143
144+

- Gateway/sessions: clear cached skills snapshots during `/new` and `sessions.reset` so long-lived channel sessions rebuild the visible skill list after skills change. (#78873) Thanks @Evizero.

144145

- fix(auto-reply): gate inline skill tool dispatch [AI]. (#78517) Thanks @pgondhi987.

145146

- Canvas plugin: keep legacy root `canvasHost` configs valid until `openclaw doctor --fix` migrates them into `plugins.entries.canvas.config.host`, move Canvas/A2UI clients to gateway protocol v4 plugin surfaces, and refresh the generated A2UI bundle hash so normal builds stay clean.

146147

- feishu: honor config write policy for dynamic agents [AI]. (#78520) Thanks @pgondhi987.

Original file line numberDiff line numberDiff line change

@@ -729,6 +729,54 @@ describe("initSessionState RawBody", () => {

729729

expect(result.triggerBodyNormalized).toBe("/NEW KeepThisCase");

730730

});

731731
732+

it("drops cached skills snapshot when /new rotates an existing session", async () => {

733+

const root = await makeCaseDir("openclaw-rawbody-reset-skills-");

734+

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

735+

const sessionKey = "agent:main:signal:direct:uuid:reset-skills";

736+

const existingSessionId = "session-with-stale-skills";

737+
738+

await writeSessionStoreFast(storePath, {

739+

[sessionKey]: {

740+

sessionId: existingSessionId,

741+

updatedAt: Date.now(),

742+

systemSent: true,

743+

skillsSnapshot: {

744+

prompt: "<available_skills><skill><name>stale</name></skill></available_skills>",

745+

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

746+

version: 0,

747+

},

748+

},

749+

});

750+
751+

const cfg = {

752+

session: {

753+

store: storePath,

754+

resetTriggers: ["/new"],

755+

},

756+

} as OpenClawConfig;

757+
758+

const result = await initSessionState({

759+

ctx: {

760+

RawBody: "/new continue",

761+

ChatType: "direct",

762+

SessionKey: sessionKey,

763+

},

764+

cfg,

765+

commandAuthorized: true,

766+

});

767+
768+

expect(result.isNewSession).toBe(true);

769+

expect(result.resetTriggered).toBe(true);

770+

expect(result.sessionId).not.toBe(existingSessionId);

771+

expect(result.sessionEntry.skillsSnapshot).toBeUndefined();

772+
773+

const store = JSON.parse(await fs.readFile(storePath, "utf-8")) as Record<

774+

string,

775+

{ skillsSnapshot?: unknown }

776+

>;

777+

expect(store[sessionKey]?.skillsSnapshot).toBeUndefined();

778+

});

779+
732780

it("drains stale system events when /new rotates an existing session", async () => {

733781

const root = await makeCaseDir("openclaw-rawbody-reset-system-events-");

734782

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

Original file line numberDiff line numberDiff line change

@@ -768,6 +768,9 @@ export async function initSessionState(params: {

768768

sessionEntry.outputTokens = undefined;

769769

sessionEntry.estimatedCostUsd = undefined;

770770

sessionEntry.contextTokens = undefined;

771+

// Skills snapshots are prompt/runtime caches. Do not preserve a stale

772+

// snapshot through /new; the next turn must rebuild the visible skill list.

773+

sessionEntry.skillsSnapshot = undefined;

771774

}

772775

// Preserve per-session overrides while resetting compaction state on /new.

773776

sessionStore[sessionKey] = { ...sessionStore[sessionKey], ...sessionEntry };

Original file line numberDiff line numberDiff line change

@@ -50,6 +50,46 @@ test("sessions.reset recomputes model from defaults instead of stale runtime mod

5050

await expect(fs.stat(reset.payload?.entry.sessionFile as string)).resolves.toBeTruthy();

5151

});

5252
53+

test("sessions.reset drops cached skills snapshot so /new rebuilds visible skills", async () => {

54+

const { storePath } = await createSessionStoreDir();

55+

testState.agentConfig = {

56+

model: {

57+

primary: "openai/gpt-test-a",

58+

},

59+

};

60+
61+

await writeSessionStore({

62+

entries: {

63+

main: sessionStoreEntry("sess-stale-skills", {

64+

skillsSnapshot: {

65+

prompt: "<available_skills><skill><name>stale</name></skill></available_skills>",

66+

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

67+

version: 0,

68+

},

69+

}),

70+

},

71+

});

72+
73+

const reset = await directSessionReq<{

74+

ok: true;

75+

key: string;

76+

entry: {

77+

sessionId: string;

78+

skillsSnapshot?: unknown;

79+

};

80+

}>("sessions.reset", { key: "main" });

81+
82+

expect(reset.ok).toBe(true);

83+

expect(reset.payload?.entry.sessionId).not.toBe("sess-stale-skills");

84+

expect(reset.payload?.entry.skillsSnapshot).toBeUndefined();

85+
86+

const store = JSON.parse(await fs.readFile(storePath, "utf-8")) as Record<

87+

string,

88+

{ skillsSnapshot?: unknown }

89+

>;

90+

expect(store["agent:main:main"]?.skillsSnapshot).toBeUndefined();

91+

});

92+
5393

test("sessions.reset preserves legacy explicit model overrides without modelOverrideSource", async () => {

5494

const { storePath } = await createSessionStoreDir();

5595

testState.agentConfig = {

Original file line numberDiff line numberDiff line change

@@ -623,7 +623,10 @@ export async function performGatewaySessionReset(params: {

623623

lastTo: currentEntry?.lastTo,

624624

lastAccountId: currentEntry?.lastAccountId,

625625

lastThreadId: currentEntry?.lastThreadId,

626-

skillsSnapshot: currentEntry?.skillsSnapshot,

626+

// Do not carry the cached skills catalog across /new. Long-lived channel

627+

// sessions (Signal DMs/groups in particular) otherwise keep advertising a

628+

// stale <available_skills> block even after reset/restart, because the

629+

// skills snapshot version is runtime-local and may reset to 0.

627630

acp: currentEntry?.acp,

628631

inputTokens: 0,

629632

outputTokens: 0,