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

推荐订阅源

IT之家
IT之家
Microsoft Azure Blog
Microsoft Azure Blog
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
博客园_首页
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
小众软件
小众软件
F
Fortinet All Blogs
Microsoft Security Blog
Microsoft Security Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
aimingoo的专栏
aimingoo的专栏
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
宝玉的分享
宝玉的分享
有赞技术团队
有赞技术团队
J
Java Code Geeks
WordPress大学
WordPress大学
The Cloudflare Blog

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
test(parallels): batch POSIX provider config · openclaw/o...
steipete · 2026-05-02 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

1212

parseBoolEnv,

1313

parseMode,

1414

parseProvider,

15-

modelTransportConfigJson,

16-

providerIdFromModelId,

17-

providerTimeoutConfigJson,

15+

modelProviderConfigBatchJson,

1816

repoRoot,

1917

resolveHostIp,

2018

resolveHostPort,

@@ -690,22 +688,14 @@ rm -rf /root/.openclaw/test-bad-plugin`);

690688
691689

private verifyLocalTurn(): void {

692690

this.guestExec(["openclaw", "models", "set", this.auth.modelId]);

693-

const providerId = providerIdFromModelId(this.auth.modelId) || this.options.provider;

694-

const providerTimeoutConfig = providerTimeoutConfigJson(this.auth.modelId, "linux");

695-

if (providerTimeoutConfig) {

696-

this.guestBash(

697-

`openclaw config set ${shellQuote(`models.providers.${providerId}`)} ${shellQuote(

698-

providerTimeoutConfig,

699-

)} --strict-json`,

700-

);

701-

}

702-

const modelTransportConfig = modelTransportConfigJson(this.auth.modelId);

703-

if (modelTransportConfig) {

704-

this.guestBash(

705-

`openclaw config set ${shellQuote(

706-

`agents.defaults.models.${this.auth.modelId}`,

707-

)} ${shellQuote(modelTransportConfig)} --strict-json`,

708-

);

691+

const modelProviderConfigBatch = modelProviderConfigBatchJson(this.auth.modelId, "linux");

692+

if (modelProviderConfigBatch) {

693+

this.guestBash(`provider_config_batch="$(mktemp)"

694+

cat >"$provider_config_batch" <<'JSON'

695+

${modelProviderConfigBatch}

696+

JSON

697+

openclaw config set --batch-file "$provider_config_batch" --strict-json

698+

rm -f "$provider_config_batch"`);

709699

}

710700

this.guestExec([

711701

"openclaw",

Original file line numberDiff line numberDiff line change

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

1111

packOpenClaw,

1212

parseMode,

1313

parseProvider,

14-

modelTransportConfigJson,

15-

providerIdFromModelId,

16-

providerTimeoutConfigJson,

14+

modelProviderConfigBatchJson,

1715

resolveHostIp,

1816

resolveHostPort,

1917

resolveLatestVersion,

@@ -974,22 +972,16 @@ exit 1`);

974972
975973

private verifyTurn(): void {

976974

this.guestExec([guestNode, guestOpenClawEntry, "models", "set", this.auth.modelId]);

977-

const providerId = providerIdFromModelId(this.auth.modelId) || this.options.provider;

978-

const providerTimeoutConfig = providerTimeoutConfigJson(this.auth.modelId, "macos");

979-

if (providerTimeoutConfig) {

980-

this.guestSh(

981-

`${shellQuote(guestNode)} ${shellQuote(guestOpenClawEntry)} config set ${shellQuote(

982-

`models.providers.${providerId}`,

983-

)} ${shellQuote(providerTimeoutConfig)} --strict-json`,

984-

);

985-

}

986-

const modelTransportConfig = modelTransportConfigJson(this.auth.modelId);

987-

if (modelTransportConfig) {

988-

this.guestSh(

989-

`${shellQuote(guestNode)} ${shellQuote(guestOpenClawEntry)} config set ${shellQuote(

990-

`agents.defaults.models.${this.auth.modelId}`,

991-

)} ${shellQuote(modelTransportConfig)} --strict-json`,

992-

);

975+

const modelProviderConfigBatch = modelProviderConfigBatchJson(this.auth.modelId, "macos");

976+

if (modelProviderConfigBatch) {

977+

this.guestSh(`provider_config_batch="$(mktemp)"

978+

cat >"$provider_config_batch" <<'JSON'

979+

${modelProviderConfigBatch}

980+

JSON

981+

${shellQuote(guestNode)} ${shellQuote(

982+

guestOpenClawEntry,

983+

)} config set --batch-file "$provider_config_batch" --strict-json

984+

rm -f "$provider_config_batch"`);

993985

}

994986

this.guestExec([

995987

guestNode,

Original file line numberDiff line numberDiff line change

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

55

windowsModelProviderTimeoutScript,

66

windowsOpenClawResolver,

77

} from "./powershell.ts";

8-

import {

9-

modelTransportConfigJson,

10-

providerIdFromModelId,

11-

providerTimeoutConfigJson,

12-

} from "./provider-auth.ts";

8+

import { modelProviderConfigBatchJson } from "./provider-auth.ts";

139

import type { Platform, ProviderAuth } from "./types.ts";

1410
1511

export interface NpmUpdateScriptInput {

@@ -23,25 +19,20 @@ function posixModelProviderConfigCommands(

2319

modelId: string,

2420

platform: Platform,

2521

): string {

26-

const commands: string[] = [];

27-

const providerId = providerIdFromModelId(modelId);

28-

const configJson = providerTimeoutConfigJson(modelId, platform);

29-

if (providerId && configJson) {

30-

commands.push(

31-

`${command} config set ${shellQuote(`models.providers.${providerId}`)} ${shellQuote(

32-

configJson,

33-

)} --strict-json`,

34-

);

35-

}

36-

const transportJson = modelTransportConfigJson(modelId);

37-

if (transportJson) {

38-

commands.push(

39-

`${command} config set ${shellQuote(`agents.defaults.models.${modelId}`)} ${shellQuote(

40-

transportJson,

41-

)} --strict-json`,

42-

);

22+

const batchJson = modelProviderConfigBatchJson(modelId, platform);

23+

if (!batchJson) {

24+

return "";

4325

}

44-

return commands.join("\n");

26+

return `provider_config_batch="$(mktemp)"

27+

cat >"$provider_config_batch" <<'JSON'

28+

${batchJson}

29+

JSON

30+

set +e

31+

${command} config set --batch-file "$provider_config_batch" --strict-json

32+

provider_config_exit=$?

33+

set -e

34+

rm -f "$provider_config_batch"

35+

if [ "$provider_config_exit" -ne 0 ]; then exit "$provider_config_exit"; fi`;

4536

}

4637
4738

function posixAssertAgentOkScript(command: string, input: NpmUpdateScriptInput, sessionId: string) {

Original file line numberDiff line numberDiff line change

@@ -122,6 +122,26 @@ export function modelTransportConfigJson(modelId: string): string {

122122

});

123123

}

124124
125+

export function modelProviderConfigBatchJson(modelId: string, platform: Platform): string {

126+

const commands: Array<{ path: string; value: unknown }> = [];

127+

const providerId = providerIdFromModelId(modelId);

128+

const providerConfig = providerTimeoutConfigJson(modelId, platform);

129+

if (providerId && providerConfig) {

130+

commands.push({

131+

path: `models.providers.${providerId}`,

132+

value: JSON.parse(providerConfig) as unknown,

133+

});

134+

}

135+

const modelTransportConfig = modelTransportConfigJson(modelId);

136+

if (modelTransportConfig) {

137+

commands.push({

138+

path: `agents.defaults.models.${modelId}`,

139+

value: JSON.parse(modelTransportConfig) as unknown,

140+

});

141+

}

142+

return commands.length === 0 ? "" : JSON.stringify(commands);

143+

}

144+
125145

export function parseProvider(value: string): Provider {

126146

if (value === "openai" || value === "anthropic" || value === "minimax") {

127147

return value;

Original file line numberDiff line numberDiff line change

@@ -321,10 +321,10 @@ console.log(JSON.stringify(result));

321321

expect(script, scriptPath).toContain("minimal");

322322

expect(script, scriptPath).toContain("finalAssistant(Raw|Visible)Text");

323323

}

324-

expect(readFileSync(TS_PATHS.macos, "utf8")).toContain("providerTimeoutConfigJson");

325-

expect(readFileSync(TS_PATHS.macos, "utf8")).toContain("modelTransportConfigJson");

326-

expect(readFileSync(TS_PATHS.linux, "utf8")).toContain("providerTimeoutConfigJson");

327-

expect(readFileSync(TS_PATHS.linux, "utf8")).toContain("modelTransportConfigJson");

324+

expect(readFileSync(TS_PATHS.macos, "utf8")).toContain("modelProviderConfigBatchJson");

325+

expect(readFileSync(TS_PATHS.macos, "utf8")).toContain("config set --batch-file");

326+

expect(readFileSync(TS_PATHS.linux, "utf8")).toContain("modelProviderConfigBatchJson");

327+

expect(readFileSync(TS_PATHS.linux, "utf8")).toContain("config set --batch-file");

328328

expect(readFileSync(TS_PATHS.windows, "utf8")).toContain("windowsModelProviderTimeoutScript");

329329

expect(readFileSync(TS_PATHS.powershell, "utf8")).toContain("config set --batch-file");

330330

@@ -336,8 +336,8 @@ console.log(JSON.stringify(result));

336336

expect(npmUpdateScripts).toContain("finalAssistant(Raw|Visible)Text");

337337

expect(npmUpdateScripts).toContain("posixAssertAgentOkScript");

338338

expect(npmUpdateScripts).toContain("windowsModelProviderTimeoutScript");

339-

expect(npmUpdateScripts).toContain("modelTransportConfigJson");

340-

expect(npmUpdateScripts).toContain("agents.defaults.models.${modelId}");

339+

expect(npmUpdateScripts).toContain("modelProviderConfigBatchJson");

340+

expect(npmUpdateScripts).toContain("config set --batch-file");

341341

});

342342
343343

it("clears phase timers and applies phase deadlines to guest commands", () => {