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

推荐订阅源

V
Visual Studio Blog
博客园 - 司徒正美
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗
The Cloudflare Blog
D
DataBreaches.Net
J
Java Code Geeks
G
Google Developers Blog
L
LangChain Blog
N
Netflix TechBlog - Medium
Stack Overflow Blog
Stack Overflow Blog
月光博客
月光博客
酷 壳 – CoolShell
酷 壳 – CoolShell
WordPress大学
WordPress大学
小众软件
小众软件
量子位
Apple Machine Learning Research
Apple Machine Learning Research
P
Proofpoint News Feed
博客园_首页
罗磊的独立博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog
腾讯CDC

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: preserve agent provider params on config writes · op...
steipete · 2026-04-29 · via Recent Commits to openclaw:main

@@ -123,6 +123,115 @@ function setPathValue(value: unknown, path: string[], nextValue: unknown): unkno

123123

};

124124

}

125125126+

function pathStartsWith(path: string[], prefix: string[]): boolean {

127+

return prefix.length <= path.length && prefix.every((segment, index) => path[index] === segment);

128+

}

129+130+

function pathOverlapsAny(path: string[], candidates: readonly string[][] | undefined): boolean {

131+

return Boolean(

132+

candidates?.some(

133+

(candidate) => pathStartsWith(path, candidate) || pathStartsWith(candidate, path),

134+

),

135+

);

136+

}

137+138+

function isIncludeOwnedPath(rootAuthoredConfig: unknown, path: string[]): boolean {

139+

return collectIncludeOwnedPaths(rootAuthoredConfig).some(

140+

(includePath) => pathStartsWith(path, includePath) || pathStartsWith(includePath, path),

141+

);

142+

}

143+144+

function setPathValueCreatingParents(value: unknown, path: string[], nextValue: unknown): unknown {

145+

if (path.length === 0) {

146+

return cloneUnknown(nextValue);

147+

}

148+

const [head, ...tail] = path;

149+

const record = isRecord(value) ? value : {};

150+

return {

151+

...record,

152+

[head]: setPathValueCreatingParents(record[head], tail, nextValue),

153+

};

154+

}

155+156+

function preserveSourceValueAtPath(params: {

157+

persistedCandidate: unknown;

158+

sourceConfig: unknown;

159+

nextConfig: unknown;

160+

rootAuthoredConfig: unknown;

161+

unsetPaths?: readonly string[][];

162+

path: string[];

163+

sourceValue?: unknown;

164+

}): unknown {

165+

if (pathOverlapsAny(params.path, params.unsetPaths)) {

166+

return params.persistedCandidate;

167+

}

168+

if (isIncludeOwnedPath(params.rootAuthoredConfig, params.path)) {

169+

return params.persistedCandidate;

170+

}

171+

if (getPathValue(params.nextConfig, params.path) !== undefined) {

172+

return params.persistedCandidate;

173+

}

174+

const sourceValue = params.sourceValue ?? getPathValue(params.sourceConfig, params.path);

175+

if (

176+

sourceValue === undefined ||

177+

getPathValue(params.persistedCandidate, params.path) !== undefined

178+

) {

179+

return params.persistedCandidate;

180+

}

181+

return setPathValueCreatingParents(params.persistedCandidate, params.path, sourceValue);

182+

}

183+184+

function preserveAuthoredAgentParams(params: {

185+

persistedCandidate: unknown;

186+

sourceConfig: unknown;

187+

nextConfig: unknown;

188+

rootAuthoredConfig: unknown;

189+

unsetPaths?: readonly string[][];

190+

}): unknown {

191+

const defaults = getPathValue(params.sourceConfig, ["agents", "defaults"]);

192+

if (!isRecord(defaults)) {

193+

return params.persistedCandidate;

194+

}

195+196+

let next = params.persistedCandidate;

197+

if (Object.prototype.hasOwnProperty.call(defaults, "params")) {

198+

next = preserveSourceValueAtPath({

199+

...params,

200+

persistedCandidate: next,

201+

path: ["agents", "defaults", "params"],

202+

sourceValue: defaults.params,

203+

});

204+

}

205+206+

const models = defaults.models;

207+

if (!isRecord(models)) {

208+

return next;

209+

}

210+

for (const [modelId, modelEntry] of Object.entries(models)) {

211+

if (!isRecord(modelEntry) || !Object.prototype.hasOwnProperty.call(modelEntry, "params")) {

212+

continue;

213+

}

214+

const modelPath = ["agents", "defaults", "models", modelId];

215+

const paramsPath = [...modelPath, "params"];

216+

if (getPathValue(next, modelPath) === undefined) {

217+

next = preserveSourceValueAtPath({

218+

...params,

219+

persistedCandidate: next,

220+

path: modelPath,

221+

sourceValue: modelEntry,

222+

});

223+

continue;

224+

}

225+

next = preserveSourceValueAtPath({

226+

...params,

227+

persistedCandidate: next,

228+

path: paramsPath,

229+

sourceValue: modelEntry.params,

230+

});

231+

}

232+

return next;

233+

}

234+126235

function preserveUntouchedIncludes(params: {

127236

patch: unknown;

128237

rootAuthoredConfig: unknown;

@@ -147,19 +256,28 @@ export function resolvePersistCandidateForWrite(params: {

147256

sourceConfig: unknown;

148257

nextConfig: unknown;

149258

rootAuthoredConfig?: unknown;

259+

unsetPaths?: readonly string[][];

150260

}): unknown {

151261

const patch = createMergePatch(params.runtimeConfig, params.nextConfig);

152262

const projectedSource = projectSourceOntoRuntimeShape(params.sourceConfig, params.runtimeConfig);

263+

const rootAuthoredConfig = params.rootAuthoredConfig ?? params.sourceConfig;

153264

const persisted = preserveUntouchedIncludes({

154265

patch,

155-

rootAuthoredConfig: params.rootAuthoredConfig ?? params.sourceConfig,

266+

rootAuthoredConfig,

156267

persistedCandidate: applyMergePatch(projectedSource, patch),

157268

});

158-

return preserveRootSchemaUri({

159-

rootAuthoredConfig: params.rootAuthoredConfig ?? params.sourceConfig,

269+

const withSchema = preserveRootSchemaUri({

270+

rootAuthoredConfig,

160271

nextConfig: params.nextConfig,

161272

persistedCandidate: persisted,

162273

});

274+

return preserveAuthoredAgentParams({

275+

sourceConfig: params.sourceConfig,

276+

nextConfig: params.nextConfig,

277+

rootAuthoredConfig,

278+

persistedCandidate: withSchema,

279+

unsetPaths: params.unsetPaths,

280+

});

163281

}

164282165283

function readRootSchemaUri(value: unknown): string | undefined {