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

推荐订阅源

J
Java Code Geeks
Martin Fowler
Martin Fowler
B
Blog RSS Feed
D
DataBreaches.Net
L
LangChain Blog
月光博客
月光博客
S
SegmentFault 最新的问题
阮一峰的网络日志
阮一峰的网络日志
V
Visual Studio Blog
美团技术团队
Jina AI
Jina AI
博客园 - 司徒正美
雷峰网
雷峰网
Last Week in AI
Last Week in AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
IT之家
IT之家
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
小众软件
小众软件
罗磊的独立博客
博客园_首页
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
A
About on SuperTechFans
Engineering at Meta
Engineering at Meta

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: require parallels agent responses · openclaw/opencl...
steipete · 2026-05-01 · via Recent Commits to openclaw:main

@@ -1,14 +1,66 @@

11

import { posixAgentWorkspaceScript, windowsAgentWorkspaceScript } from "./agent-workspace.ts";

22

import { shellQuote } from "./host-command.ts";

3-

import { psSingleQuote, windowsOpenClawResolver } from "./powershell.ts";

4-

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

3+

import {

4+

psSingleQuote,

5+

windowsModelProviderTimeoutScript,

6+

windowsOpenClawResolver,

7+

} from "./powershell.ts";

8+

import { providerIdFromModelId, resolveParallelsModelTimeoutSeconds } from "./provider-auth.ts";

9+

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

510611

export interface NpmUpdateScriptInput {

712

auth: ProviderAuth;

813

expectedNeedle: string;

914

updateTarget: string;

1015

}

111617+

function posixModelProviderTimeoutCommand(

18+

command: string,

19+

modelId: string,

20+

platform: Platform,

21+

): string {

22+

const providerId = providerIdFromModelId(modelId);

23+

if (!providerId) {

24+

return "";

25+

}

26+

return `${command} config set ${shellQuote(

27+

`models.providers.${providerId}.timeoutSeconds`,

28+

)} ${resolveParallelsModelTimeoutSeconds(platform)} --strict-json`;

29+

}

30+31+

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

32+

return `agent_ok=false

33+

for attempt in 1 2; do

34+

session_id=${shellQuote(sessionId)}

35+

if [ "$attempt" -gt 1 ]; then session_id=${shellQuote(`${sessionId}-retry`)}"-$attempt"; fi

36+

rm -f "$HOME/.openclaw/agents/main/sessions/$session_id.jsonl"

37+

output_file="$(mktemp)"

38+

set +e

39+

${input.auth.apiKeyEnv}=${shellQuote(input.auth.apiKeyValue)} ${command} agent --local --agent main --session-id "$session_id" --message 'Reply with exact ASCII text OK only.' --thinking minimal --json >"$output_file" 2>&1

40+

rc=$?

41+

set -e

42+

cat "$output_file"

43+

if [ "$rc" -ne 0 ]; then

44+

rm -f "$output_file"

45+

exit "$rc"

46+

fi

47+

if grep -Eq '"finalAssistant(Raw|Visible)Text"[[:space:]]*:[[:space:]]*"OK"' "$output_file"; then

48+

agent_ok=true

49+

rm -f "$output_file"

50+

break

51+

fi

52+

rm -f "$output_file"

53+

if [ "$attempt" -lt 2 ]; then

54+

echo "agent turn attempt $attempt finished without OK response; retrying"

55+

sleep 3

56+

fi

57+

done

58+

if [ "$agent_ok" != true ]; then

59+

echo "openclaw agent finished without OK response" >&2

60+

exit 1

61+

fi`;

62+

}

63+1264

export function macosUpdateScript(input: NpmUpdateScriptInput): string {

1365

return String.raw`set -euo pipefail

1466

export PATH=/opt/homebrew/bin:/opt/homebrew/opt/node/bin:/opt/homebrew/sbin:/usr/bin:/bin:/usr/sbin:/sbin

@@ -70,10 +122,11 @@ ${posixVersionCheck("/opt/homebrew/bin/openclaw", input.expectedNeedle)}

70122

start_openclaw_gateway

71123

wait_for_gateway

72124

/opt/homebrew/bin/openclaw models set ${shellQuote(input.auth.modelId)}

125+

${posixModelProviderTimeoutCommand("/opt/homebrew/bin/openclaw", input.auth.modelId, "macos")}

73126

/opt/homebrew/bin/openclaw config set agents.defaults.skipBootstrap true --strict-json

74127

/opt/homebrew/bin/openclaw config set tools.profile minimal

75128

${posixAgentWorkspaceScript("Parallels npm update smoke test assistant.")}

76-

${input.auth.apiKeyEnv}=${shellQuote(input.auth.apiKeyValue)} /opt/homebrew/bin/openclaw agent --local --agent main --session-id parallels-npm-update-macos --message 'Reply with exact ASCII text OK only.' --thinking minimal --json`;

129+

${posixAssertAgentOkScript("/opt/homebrew/bin/openclaw", input, "parallels-npm-update-macos")}`;

77130

}

7813179132

export function windowsUpdateScript(input: NpmUpdateScriptInput): string {

@@ -142,13 +195,32 @@ if ($LASTEXITCODE -ne 0) {

142195

}

143196

Wait-OpenClawGateway

144197

Invoke-OpenClaw models set ${psSingleQuote(input.auth.modelId)}

198+

${windowsModelProviderTimeoutScript(input.auth.modelId)}

145199

Invoke-OpenClaw config set agents.defaults.skipBootstrap true --strict-json

146200

Invoke-OpenClaw config set tools.profile minimal

147201

$sessionPath = Join-Path $env:USERPROFILE '.openclaw\\agents\\main\\sessions\\parallels-npm-update-windows.jsonl'

148202

Remove-Item $sessionPath -Force -ErrorAction SilentlyContinue

149203

${windowsAgentWorkspaceScript("Parallels npm update smoke test assistant.")}

150204

Set-Item -Path ('Env:' + ${psSingleQuote(input.auth.apiKeyEnv)}) -Value ${psSingleQuote(input.auth.apiKeyValue)}

151-

Invoke-OpenClaw agent --local --agent main --session-id parallels-npm-update-windows --message 'Reply with exact ASCII text OK only.' --thinking minimal --json`;

205+

$agentOk = $false

206+

for ($attempt = 1; $attempt -le 2; $attempt++) {

207+

$sessionId = if ($attempt -eq 1) { 'parallels-npm-update-windows' } else { "parallels-npm-update-windows-retry-$attempt" }

208+

$sessionsDir = Join-Path $env:USERPROFILE '.openclaw\\agents\\main\\sessions'

209+

$sessionPath = Join-Path $sessionsDir "$sessionId.jsonl"

210+

Remove-Item $sessionPath -Force -ErrorAction SilentlyContinue

211+

$output = Invoke-OpenClaw agent --local --agent main --session-id $sessionId --message 'Reply with exact ASCII text OK only.' --thinking minimal --json 2>&1

212+

if ($null -ne $output) { $output | ForEach-Object { $_ } }

213+

if ($LASTEXITCODE -ne 0) { throw "agent failed with exit code $LASTEXITCODE" }

214+

if (($output | Out-String) -match '"finalAssistant(Raw|Visible)Text":\\s*"OK"') {

215+

$agentOk = $true

216+

break

217+

}

218+

if ($attempt -lt 2) {

219+

Write-Host "agent turn attempt $attempt finished without OK response; retrying"

220+

Start-Sleep -Seconds 3

221+

}

222+

}

223+

if (-not $agentOk) { throw 'openclaw agent finished without OK response' }`;

152224

}

153225154226

export function linuxUpdateScript(input: NpmUpdateScriptInput): string {

@@ -207,10 +279,11 @@ ${posixVersionCheck("openclaw", input.expectedNeedle)}

207279

start_openclaw_gateway

208280

wait_for_gateway

209281

openclaw models set ${shellQuote(input.auth.modelId)}

282+

${posixModelProviderTimeoutCommand("openclaw", input.auth.modelId, "linux")}

210283

openclaw config set agents.defaults.skipBootstrap true --strict-json

211284

openclaw config set tools.profile minimal

212285

${posixAgentWorkspaceScript("Parallels npm update smoke test assistant.")}

213-

${input.auth.apiKeyEnv}=${shellQuote(input.auth.apiKeyValue)} openclaw agent --local --agent main --session-id parallels-npm-update-linux --message 'Reply with exact ASCII text OK only.' --thinking minimal --json`;

286+

${posixAssertAgentOkScript("openclaw", input, "parallels-npm-update-linux")}`;

214287

}

215288216289

function posixVersionCheck(command: string, expectedNeedle: string): string {