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

推荐订阅源

Google DeepMind News
Google DeepMind News
B
Blog RSS Feed
量子位
aimingoo的专栏
aimingoo的专栏
V
Visual Studio Blog
Y
Y Combinator Blog
Vercel News
Vercel News
云风的 BLOG
云风的 BLOG
宝玉的分享
宝玉的分享
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
Stack Overflow Blog
Stack Overflow Blog
大猫的无限游戏
大猫的无限游戏
Microsoft Security Blog
Microsoft Security Blog
B
Blog
Last Week in AI
Last Week in AI
有赞技术团队
有赞技术团队
博客园 - 聂微东
腾讯CDC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks

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(config): protect model config merges · openclaw/openc...
steipete · 2026-04-23 · via Recent Commits to openclaw:main

@@ -308,6 +308,98 @@ describe("config cli", () => {

308308

expect(mockLog).toHaveBeenCalledWith(expect.stringContaining("Dry run successful"));

309309

});

310310311+

it("rejects protected model map replacement unless explicitly requested", async () => {

312+

const resolved: OpenClawConfig = {

313+

agents: {

314+

defaults: {

315+

models: {

316+

"openai/gpt-5.4": { alias: "GPT" },

317+

"anthropic/claude-sonnet-4-6": { alias: "Sonnet" },

318+

},

319+

},

320+

},

321+

};

322+

setSnapshot(resolved, resolved);

323+324+

await expect(

325+

runConfigCommand([

326+

"config",

327+

"set",

328+

"agents.defaults.models",

329+

'{"openai/gpt-5.4":{}}',

330+

"--strict-json",

331+

]),

332+

).rejects.toThrow("__exit__:1");

333+334+

expect(mockWriteConfigFile).not.toHaveBeenCalled();

335+

expect(mockError).toHaveBeenCalledWith(

336+

expect.stringContaining("Refusing to replace agents.defaults.models"),

337+

);

338+

});

339+340+

it("merges protected model map values with --merge", async () => {

341+

const resolved: OpenClawConfig = {

342+

agents: {

343+

defaults: {

344+

models: {

345+

"openai/gpt-5.4": { alias: "GPT" },

346+

},

347+

},

348+

},

349+

};

350+

setSnapshot(resolved, resolved);

351+352+

await runConfigCommand([

353+

"config",

354+

"set",

355+

"agents.defaults.models",

356+

'{"anthropic/claude-sonnet-4-6":{"alias":"Sonnet"}}',

357+

"--strict-json",

358+

"--merge",

359+

]);

360+361+

expect(mockWriteConfigFile).toHaveBeenCalledTimes(1);

362+

const written = mockWriteConfigFile.mock.calls[0]?.[0];

363+

expect(written.agents?.defaults?.models).toEqual({

364+

"openai/gpt-5.4": { alias: "GPT" },

365+

"anthropic/claude-sonnet-4-6": { alias: "Sonnet" },

366+

});

367+

});

368+369+

it("merges provider model arrays by id with --merge", async () => {

370+

const resolved = {

371+

models: {

372+

providers: {

373+

ollama: {

374+

api: "ollama",

375+

models: [

376+

{ id: "llama3.2", name: "Llama 3.2", contextWindow: 131072 },

377+

{ id: "qwen3", name: "Qwen 3" },

378+

],

379+

},

380+

},

381+

},

382+

} as unknown as OpenClawConfig;

383+

setSnapshot(resolved, resolved);

384+385+

await runConfigCommand([

386+

"config",

387+

"set",

388+

"models.providers.ollama.models",

389+

'[{"id":"llama3.2","name":"Llama 3.2 latest"},{"id":"gemma4","name":"Gemma 4"}]',

390+

"--strict-json",

391+

"--merge",

392+

]);

393+394+

expect(mockWriteConfigFile).toHaveBeenCalledTimes(1);

395+

const written = mockWriteConfigFile.mock.calls[0]?.[0];

396+

expect(written.models?.providers?.ollama?.models).toEqual([

397+

{ id: "llama3.2", name: "Llama 3.2 latest", contextWindow: 131072 },

398+

{ id: "qwen3", name: "Qwen 3" },

399+

{ id: "gemma4", name: "Gemma 4" },

400+

]);

401+

});

402+311403

it("writes agents.defaults.llm.idleTimeoutSeconds without disturbing sibling defaults", async () => {

312404

const resolved: OpenClawConfig = {

313405

agents: {

@@ -1256,6 +1348,57 @@ describe("config cli", () => {

12561348

expect(written.gateway?.auth).toEqual({ mode: "token" });

12571349

});

125813501351+

it("batch-file nested leaf updates preserve agents defaults and list siblings", async () => {

1352+

const resolved: OpenClawConfig = {

1353+

agents: {

1354+

defaults: {

1355+

models: {

1356+

"openai/gpt-5.4": { alias: "GPT" },

1357+

},

1358+

model: { primary: "openai/gpt-5.4" },

1359+

},

1360+

list: [{ id: "main" }, { id: "ops" }],

1361+

},

1362+

plugins: {

1363+

entries: {

1364+

"github-copilot": { enabled: true },

1365+

},

1366+

},

1367+

};

1368+

setSnapshot(resolved, resolved);

1369+1370+

const pathname = path.join(

1371+

os.tmpdir(),

1372+

`openclaw-config-memory-${Date.now()}-${Math.random().toString(16).slice(2)}.json`,

1373+

);

1374+

fs.writeFileSync(

1375+

pathname,

1376+

JSON.stringify([

1377+

{ path: "agents.defaults.memorySearch.enabled", value: true },

1378+

{ path: "agents.defaults.memorySearch.provider", value: "gemini" },

1379+

{ path: "agents.defaults.memorySearch.sources", value: ["memory"] },

1380+

]),

1381+

"utf8",

1382+

);

1383+

try {

1384+

await runConfigCommand(["config", "set", "--batch-file", pathname]);

1385+

} finally {

1386+

fs.rmSync(pathname, { force: true });

1387+

}

1388+1389+

expect(mockWriteConfigFile).toHaveBeenCalledTimes(1);

1390+

const written = mockWriteConfigFile.mock.calls[0]?.[0];

1391+

expect(written.agents?.defaults?.models).toEqual(resolved.agents?.defaults?.models);

1392+

expect(written.agents?.defaults?.model).toEqual(resolved.agents?.defaults?.model);

1393+

expect(written.agents?.defaults?.memorySearch).toEqual({

1394+

enabled: true,

1395+

provider: "gemini",

1396+

sources: ["memory"],

1397+

});

1398+

expect(written.agents?.list).toEqual(resolved.agents?.list);

1399+

expect(written.plugins).toEqual(resolved.plugins);

1400+

});

1401+12591402

it("rejects malformed batch-file payloads", async () => {

12601403

const pathname = path.join(

12611404

os.tmpdir(),