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

推荐订阅源

有赞技术团队
有赞技术团队
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
InfoQ
J
Java Code Geeks
Microsoft Security Blog
Microsoft Security Blog
G
Google Developers Blog
D
DataBreaches.Net
Recent Announcements
Recent Announcements
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog RSS Feed
Y
Y Combinator Blog
博客园 - 【当耐特】
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
P
Proofpoint News Feed
量子位
C
Check Point Blog
F
Fortinet All Blogs
罗磊的独立博客
Last Week in AI
Last Week in AI
GbyAI
GbyAI
L
LangChain 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: write Windows Parallels provider timeout directly ·...
steipete · 2026-05-01 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -143,7 +143,20 @@ Wait-OpenClawGateway

143143

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

144144

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

145145

Invoke-OpenClaw config set tools.profile minimal

146-

Invoke-OpenClaw config set models.providers.openai ${psSingleQuote('{"baseUrl":"https://api.openai.com/v1","models":[],"timeoutSeconds":300}')} --strict-json

146+

$configPath = Join-Path $env:USERPROFILE '.openclaw\\openclaw.json'

147+

$config = Get-Content $configPath -Raw | ConvertFrom-Json

148+

if ($null -eq $config.models) {

149+

$config | Add-Member -MemberType NoteProperty -Name models -Value ([pscustomobject]@{})

150+

}

151+

if ($null -eq $config.models.providers) {

152+

$config.models | Add-Member -MemberType NoteProperty -Name providers -Value ([pscustomobject]@{})

153+

}

154+

$config.models.providers | Add-Member -Force -MemberType NoteProperty -Name openai -Value ([pscustomobject]@{

155+

baseUrl = 'https://api.openai.com/v1'

156+

models = @()

157+

timeoutSeconds = 300

158+

})

159+

$config | ConvertTo-Json -Depth 100 | Set-Content -Path $configPath -Encoding utf8

147160

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

148161

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

149162

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

Original file line numberDiff line numberDiff line change

@@ -890,8 +890,20 @@ Invoke-OpenClaw config set agents.defaults.skipBootstrap true --strict-json

890890

if ($LASTEXITCODE -ne 0) { throw "config set failed" }

891891

Invoke-OpenClaw config set tools.profile minimal

892892

if ($LASTEXITCODE -ne 0) { throw "tools profile config set failed" }

893-

Invoke-OpenClaw config set models.providers.openai ${psSingleQuote('{"baseUrl":"https://api.openai.com/v1","models":[],"timeoutSeconds":300}')} --strict-json

894-

if ($LASTEXITCODE -ne 0) { throw "openai provider timeout config set failed" }

893+

$configPath = Join-Path $env:USERPROFILE '.openclaw\\openclaw.json'

894+

$config = Get-Content $configPath -Raw | ConvertFrom-Json

895+

if ($null -eq $config.models) {

896+

$config | Add-Member -MemberType NoteProperty -Name models -Value ([pscustomobject]@{})

897+

}

898+

if ($null -eq $config.models.providers) {

899+

$config.models | Add-Member -MemberType NoteProperty -Name providers -Value ([pscustomobject]@{})

900+

}

901+

$config.models.providers | Add-Member -Force -MemberType NoteProperty -Name openai -Value ([pscustomobject]@{

902+

baseUrl = 'https://api.openai.com/v1'

903+

models = @()

904+

timeoutSeconds = 300

905+

})

906+

$config | ConvertTo-Json -Depth 100 | Set-Content -Path $configPath -Encoding utf8

895907

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

896908

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

897909

$args = ${psArray([

Original file line numberDiff line numberDiff line change

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

422422

expect(script).toContain('guestPowerShellBackground(\n "agent-turn"');

423423

expect(script).toContain("OPENCLAW_PARALLELS_WINDOWS_AGENT_TIMEOUT_S");

424424

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

425-

expect(script).toContain("models.providers.openai");

426-

expect(script).toContain('"timeoutSeconds":300');

425+

expect(script).toContain("$config.models.providers");

426+

expect(script).toContain("timeoutSeconds = 300");

427427

});

428428
429429

it("waits through transient Windows restoring state before VM operations", () => {