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

推荐订阅源

腾讯CDC
The Cloudflare Blog
IT之家
IT之家
V
V2EX
雷峰网
雷峰网
MyScale Blog
MyScale Blog
P
Proofpoint News Feed
Stack Overflow Blog
Stack Overflow Blog
博客园 - Franky
Engineering at Meta
Engineering at Meta
S
SegmentFault 最新的问题
GbyAI
GbyAI
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
小众软件
小众软件
博客园 - 叶小钗
Blog — PlanetScale
Blog — PlanetScale
C
Check Point Blog
A
About on SuperTechFans
B
Blog
月光博客
月光博客
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in 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(agents): keep reply tool snapshots aligned · openclaw...
steipete · 2026-04-25 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

6969

### Fixes

7070
7171

- Config/recovery: skip whole-file last-known-good rollback when invalidity is scoped to `plugins.entries.*`, preserving unrelated user settings during plugin schema or host-version skew. Fixes #71289. Thanks @jalehman.

72+

- Agents/tools: keep resolved reply-run configs from being overwritten by stale runtime snapshots, and let empty web runtime metadata fall back to configured provider auto-detection so standard and queued turns expose the same tool set. Fixes #71355. Thanks @c-g14.

7273

- Compaction: honor explicit `agents.defaults.compaction.keepRecentTokens` for manual `/compact`, re-distill safeguard summaries instead of snowballing previous summaries, and enable safeguard summary quality checks by default. Fixes #71357. Thanks @WhiteGiverMa.

7374

- Sessions: honor configured `session.maintenance` settings during load-time maintenance instead of falling back to default entry caps. Fixes #71356. Thanks @comolago.

7475

- Browser/sandbox: pass the resolved `browser.ssrfPolicy` into sandbox browser bridges and refresh cached bridges when the effective policy changes, so sandboxed browser navigation honors private-network opt-ins. Fixes #45153 and #57055. Thanks @jzakirov, @zuoanCo, and @kybrcore.

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,4 @@

1+

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

12

import type { OpenClawConfig } from "../config/types.openclaw.js";

23

import { resolvePluginTools } from "../plugins/tools.js";

34

import { getActiveSecretsRuntimeSnapshot } from "../secrets/runtime.js";

@@ -45,7 +46,11 @@ export function resolveOpenClawPluginToolsForOptions(params: {

4546

...resolveOpenClawPluginToolInputs({

4647

options: params.options,

4748

resolvedConfig: params.resolvedConfig,

48-

runtimeConfig: runtimeSnapshot?.config,

49+

runtimeConfig: selectApplicableRuntimeConfig({

50+

inputConfig: params.resolvedConfig ?? params.options?.config,

51+

runtimeConfig: runtimeSnapshot?.config,

52+

runtimeSourceConfig: runtimeSnapshot?.sourceConfig,

53+

}),

4954

}),

5055

existingToolNames: params.existingToolNames ?? new Set<string>(),

5156

toolAllowlist: params.options?.pluginToolAllowlist,

Original file line numberDiff line numberDiff line change

@@ -1,5 +1,6 @@

11

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

22

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

3+

import { activateSecretsRuntimeSnapshot, clearSecretsRuntimeSnapshot } from "../secrets/runtime.js";

34

import { resolveOpenClawPluginToolsForOptions } from "./openclaw-plugin-tools.js";

45
56

const hoisted = vi.hoisted(() => ({

@@ -13,6 +14,7 @@ vi.mock("../plugins/tools.js", () => ({

1314

describe("createOpenClawTools browser plugin integration", () => {

1415

afterEach(() => {

1516

hoisted.resolvePluginTools.mockReset();

17+

clearSecretsRuntimeSnapshot();

1618

});

1719
1820

it("keeps the browser tool returned by plugin resolution", () => {

@@ -117,4 +119,57 @@ describe("createOpenClawTools browser plugin integration", () => {

117119

const details = (result.details ?? {}) as { workspaceOnly?: boolean | null };

118120

expect(details.workspaceOnly).toBe(true);

119121

});

122+
123+

it("does not pass a stale active snapshot as plugin runtime config for a resolved run config", () => {

124+

const staleSourceConfig = {

125+

plugins: {

126+

allow: ["old-plugin"],

127+

},

128+

} as OpenClawConfig;

129+

const staleRuntimeConfig = {

130+

plugins: {

131+

allow: ["old-plugin"],

132+

},

133+

} as OpenClawConfig;

134+

const resolvedRunConfig = {

135+

plugins: {

136+

allow: ["browser"],

137+

},

138+

tools: {

139+

experimental: {

140+

planTool: true,

141+

},

142+

},

143+

} as OpenClawConfig;

144+

let capturedRuntimeConfig: OpenClawConfig | undefined;

145+

hoisted.resolvePluginTools.mockImplementation((params: unknown) => {

146+

capturedRuntimeConfig = (params as { context?: { runtimeConfig?: OpenClawConfig } }).context

147+

?.runtimeConfig;

148+

return [];

149+

});

150+

activateSecretsRuntimeSnapshot({

151+

sourceConfig: staleSourceConfig,

152+

config: staleRuntimeConfig,

153+

authStores: [],

154+

warnings: [],

155+

webTools: {

156+

search: {

157+

providerSource: "none",

158+

diagnostics: [],

159+

},

160+

fetch: {

161+

providerSource: "none",

162+

diagnostics: [],

163+

},

164+

diagnostics: [],

165+

},

166+

});

167+
168+

resolveOpenClawPluginToolsForOptions({

169+

options: { config: resolvedRunConfig },

170+

resolvedConfig: resolvedRunConfig,

171+

});

172+
173+

expect(capturedRuntimeConfig).toBe(resolvedRunConfig);

174+

});

120175

});

Original file line numberDiff line numberDiff line change

@@ -17,7 +17,8 @@ vi.mock("../../cli/command-secret-targets.js", () => ({

1717

hoisted.getScopedChannelsCommandSecretTargetsMock(...args),

1818

}));

1919
20-

const { resolveQueuedReplyExecutionConfig } = await import("./agent-runner-utils.js");

20+

const { resolveQueuedReplyExecutionConfig, resolveQueuedReplyRuntimeConfig } =

21+

await import("./agent-runner-utils.js");

2122

const { clearRuntimeConfigSnapshot, setRuntimeConfigSnapshot } =

2223

await import("../../config/config.js");

2324

@@ -145,4 +146,46 @@ describe("resolveQueuedReplyExecutionConfig channel scope", () => {

145146

accountId: undefined,

146147

});

147148

});

149+
150+

it("does not replace an already resolved run config with a stale runtime snapshot", () => {

151+

const sourceConfig = {

152+

models: {

153+

providers: {

154+

openai: {

155+

apiKey: { source: "env", provider: "default", id: "OPENAI_API_KEY" },

156+

models: [],

157+

},

158+

},

159+

},

160+

} as unknown as OpenClawConfig;

161+

const staleRuntimeConfig = {

162+

models: {

163+

providers: {

164+

openai: {

165+

apiKey: "stale-runtime-key",

166+

models: [],

167+

},

168+

},

169+

},

170+

} as unknown as OpenClawConfig;

171+

const scopedResolvedConfig = {

172+

models: {

173+

providers: {

174+

openai: {

175+

apiKey: "fresh-scoped-key",

176+

models: [],

177+

},

178+

},

179+

},

180+

tools: {

181+

experimental: {

182+

planTool: true,

183+

},

184+

},

185+

} as unknown as OpenClawConfig;

186+

setRuntimeConfigSnapshot(staleRuntimeConfig, sourceConfig);

187+
188+

expect(resolveQueuedReplyRuntimeConfig(structuredClone(sourceConfig))).toBe(staleRuntimeConfig);

189+

expect(resolveQueuedReplyRuntimeConfig(scopedResolvedConfig)).toBe(scopedResolvedConfig);

190+

});

148191

});

Original file line numberDiff line numberDiff line change

@@ -11,7 +11,12 @@ import {

1111

getScopedChannelsCommandSecretTargets,

1212

} from "../../cli/command-secret-targets.js";

1313

import { resolveMessageSecretScope } from "../../cli/message-secret-scope.js";

14-

import { getRuntimeConfigSnapshot, type OpenClawConfig } from "../../config/config.js";

14+

import {

15+

getRuntimeConfigSnapshot,

16+

getRuntimeConfigSourceSnapshot,

17+

selectApplicableRuntimeConfig,

18+

type OpenClawConfig,

19+

} from "../../config/config.js";

1520

import {

1621

normalizeOptionalLowercaseString,

1722

normalizeOptionalString,

@@ -29,8 +34,16 @@ import type { FollowupRun } from "./queue.js";

2934

const BUN_FETCH_SOCKET_ERROR_RE = /socket connection was closed unexpectedly/i;

3035
3136

export function resolveQueuedReplyRuntimeConfig(config: OpenClawConfig): OpenClawConfig {

37+

const runtimeConfig =

38+

typeof getRuntimeConfigSnapshot === "function" ? getRuntimeConfigSnapshot() : null;

39+

const runtimeSourceConfig =

40+

typeof getRuntimeConfigSourceSnapshot === "function" ? getRuntimeConfigSourceSnapshot() : null;

3241

return (

33-

(typeof getRuntimeConfigSnapshot === "function" ? getRuntimeConfigSnapshot() : null) ?? config

42+

selectApplicableRuntimeConfig({

43+

inputConfig: config,

44+

runtimeConfig,

45+

runtimeSourceConfig,

46+

}) ?? config

3447

);

3548

}

3649
Original file line numberDiff line numberDiff line change

@@ -21,6 +21,7 @@ export {

2121

recoverConfigFromJsonRootSuffix,

2222

resetConfigRuntimeState,

2323

resolveConfigSnapshotHash,

24+

selectApplicableRuntimeConfig,

2425

setRuntimeConfigSnapshotRefreshHandler,

2526

setRuntimeConfigSnapshot,

2627

writeConfigFile,

Original file line numberDiff line numberDiff line change

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

8080

notifyRuntimeConfigWriteListeners,

8181

registerRuntimeConfigWriteListener,

8282

resetConfigRuntimeState as resetConfigRuntimeStateState,

83+

selectApplicableRuntimeConfig,

8384

setRuntimeConfigSnapshot as setRuntimeConfigSnapshotState,

8485

getRuntimeConfigSnapshotRefreshHandler as getRuntimeConfigSnapshotRefreshHandlerState,

8586

setRuntimeConfigSnapshotRefreshHandler as setRuntimeConfigSnapshotRefreshHandlerState,

@@ -98,6 +99,7 @@ export {

9899

getRuntimeConfigSnapshotState as getRuntimeConfigSnapshot,

99100

getRuntimeConfigSourceSnapshotState as getRuntimeConfigSourceSnapshot,

100101

resetConfigRuntimeStateState as resetConfigRuntimeState,

102+

selectApplicableRuntimeConfig,

101103

setRuntimeConfigSnapshotState as setRuntimeConfigSnapshot,

102104

setRuntimeConfigSnapshotRefreshHandlerState as setRuntimeConfigSnapshotRefreshHandler,

103105

};

Original file line numberDiff line numberDiff line change

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

77

notifyRuntimeConfigWriteListeners,

88

registerRuntimeConfigWriteListener,

99

resetConfigRuntimeState,

10+

selectApplicableRuntimeConfig,

1011

setRuntimeConfigSnapshot,

1112

setRuntimeConfigSnapshotRefreshHandler,

1213

} from "./runtime-snapshot.js";

@@ -70,6 +71,54 @@ describe("runtime snapshot state", () => {

7071

expect(getRuntimeConfigSourceSnapshot()).toEqual(sourceConfig);

7172

});

7273
74+

it("selects runtime config only when input still matches the runtime source", () => {

75+

const sourceConfig: OpenClawConfig = {

76+

models: {

77+

providers: {

78+

openai: {

79+

baseUrl: "https://api.openai.com/v1",

80+

apiKey: { source: "env", provider: "default", id: "OPENAI_API_KEY" },

81+

models: [],

82+

},

83+

},

84+

},

85+

};

86+

const runtimeConfig: OpenClawConfig = {

87+

models: {

88+

providers: {

89+

openai: {

90+

baseUrl: "https://api.openai.com/v1",

91+

apiKey: "sk-runtime-resolved",

92+

models: [],

93+

},

94+

},

95+

},

96+

};

97+

const scopedResolvedConfig: OpenClawConfig = {

98+

...runtimeConfig,

99+

tools: {

100+

experimental: {

101+

planTool: true,

102+

},

103+

},

104+

};

105+
106+

expect(

107+

selectApplicableRuntimeConfig({

108+

inputConfig: structuredClone(sourceConfig),

109+

runtimeConfig,

110+

runtimeSourceConfig: sourceConfig,

111+

}),

112+

).toBe(runtimeConfig);

113+

expect(

114+

selectApplicableRuntimeConfig({

115+

inputConfig: scopedResolvedConfig,

116+

runtimeConfig,

117+

runtimeSourceConfig: sourceConfig,

118+

}),

119+

).toBe(scopedResolvedConfig);

120+

});

121+
73122

it("clears runtime source snapshot when runtime snapshot is cleared", () => {

74123

setRuntimeConfigSnapshot({ gateway: { port: 18789 } }, { gateway: { port: 18789 } });

75124

resetRuntimeConfigState();

Original file line numberDiff line numberDiff line change

@@ -22,6 +22,31 @@ let runtimeConfigSourceSnapshot: OpenClawConfig | null = null;

2222

let runtimeConfigSnapshotRefreshHandler: RuntimeConfigSnapshotRefreshHandler | null = null;

2323

const runtimeConfigWriteListeners = new Set<(event: RuntimeConfigWriteNotification) => void>();

2424
25+

function stableConfigStringify(value: unknown): string {

26+

if (value === null || typeof value !== "object") {

27+

return JSON.stringify(value) ?? "null";

28+

}

29+

if (Array.isArray(value)) {

30+

return `[${value.map((entry) => stableConfigStringify(entry)).join(",")}]`;

31+

}

32+

const record = value as Record<string, unknown>;

33+

const keys = Object.keys(record).toSorted();

34+

return `{${keys

35+

.map((key) => `${JSON.stringify(key)}:${stableConfigStringify(record[key])}`)

36+

.join(",")}}`;

37+

}

38+
39+

function configSnapshotsMatch(left: OpenClawConfig, right: OpenClawConfig): boolean {

40+

if (left === right) {

41+

return true;

42+

}

43+

try {

44+

return stableConfigStringify(left) === stableConfigStringify(right);

45+

} catch {

46+

return false;

47+

}

48+

}

49+
2550

export function setRuntimeConfigSnapshot(

2651

config: OpenClawConfig,

2752

sourceConfig?: OpenClawConfig,

@@ -47,6 +72,32 @@ export function getRuntimeConfigSourceSnapshot(): OpenClawConfig | null {

4772

return runtimeConfigSourceSnapshot;

4873

}

4974
75+

export function selectApplicableRuntimeConfig(params: {

76+

inputConfig?: OpenClawConfig;

77+

runtimeConfig?: OpenClawConfig | null;

78+

runtimeSourceConfig?: OpenClawConfig | null;

79+

}): OpenClawConfig | undefined {

80+

const runtimeConfig = params.runtimeConfig ?? null;

81+

if (!runtimeConfig) {

82+

return params.inputConfig;

83+

}

84+

const inputConfig = params.inputConfig;

85+

if (!inputConfig) {

86+

return runtimeConfig;

87+

}

88+

if (inputConfig === runtimeConfig) {

89+

return inputConfig;

90+

}

91+

const runtimeSourceConfig = params.runtimeSourceConfig ?? null;

92+

if (!runtimeSourceConfig) {

93+

return runtimeConfig;

94+

}

95+

if (configSnapshotsMatch(inputConfig, runtimeSourceConfig)) {

96+

return runtimeConfig;

97+

}

98+

return inputConfig;

99+

}

100+
50101

export function setRuntimeConfigSnapshotRefreshHandler(

51102

refreshHandler: RuntimeConfigSnapshotRefreshHandler | null,

52103

): void {

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,31 @@

1+

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

2+

import { resolveWebProviderDefinition } from "./provider-runtime-shared.js";

3+
4+

describe("resolveWebProviderDefinition", () => {

5+

it("falls back to auto-detect when runtime metadata has no selected provider", () => {

6+

const resolved = resolveWebProviderDefinition({

7+

config: {},

8+

toolConfig: { enabled: true },

9+

runtimeMetadata: {},

10+

providers: [

11+

{

12+

id: "custom",

13+

},

14+

],

15+

resolveEnabled: () => true,

16+

resolveAutoProviderId: () => "custom",

17+

createTool: ({ provider }) => ({

18+

name: provider.id,

19+

}),

20+

});

21+
22+

expect(resolved).toEqual({

23+

provider: {

24+

id: "custom",

25+

},

26+

definition: {

27+

name: "custom",

28+

},

29+

});

30+

});

31+

});