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

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
P
Proofpoint News Feed
Engineering at Meta
Engineering at Meta
Recent Announcements
Recent Announcements
L
LangChain Blog
B
Blog
阮一峰的网络日志
阮一峰的网络日志
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
M
MIT News - Artificial intelligence
D
Docker
WordPress大学
WordPress大学
J
Java Code Geeks
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The GitHub Blog
The GitHub Blog
博客园 - 叶小钗
Last Week in AI
Last Week in AI
Stack Overflow Blog
Stack Overflow Blog
有赞技术团队
有赞技术团队
MyScale Blog
MyScale Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
MongoDB | Blog
MongoDB | Blog
博客园 - Franky

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: keep live release smokes tool-minimal · openclaw/op...
steipete · 2026-05-02 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -113,6 +113,7 @@ export const CROSS_OS_GATEWAY_STATUS_COMMAND_TIMEOUT_MS =

113113

export const CROSS_OS_GATEWAY_READY_TIMEOUT_MS = 3 * 60_000;

114114

export const CROSS_OS_WINDOWS_GATEWAY_READY_TIMEOUT_MS = 5 * 60_000;

115115

export const CROSS_OS_AGENT_TURN_TIMEOUT_SECONDS = 600;

116+

export const CROSS_OS_RELEASE_SMOKE_TOOLS_PROFILE = "minimal";

116117
117118

if (isMainModule()) {

118119

try {

@@ -1901,6 +1902,14 @@ async function runInstalledModelsSet(params) {

19011902

logPath: params.logPath,

19021903

timeoutMs: 2 * 60 * 1000,

19031904

});

1905+

await runInstalledCli({

1906+

cliPath: params.cliPath,

1907+

args: ["config", "set", "tools.profile", CROSS_OS_RELEASE_SMOKE_TOOLS_PROFILE],

1908+

cwd: params.cwd,

1909+

env: params.env,

1910+

logPath: params.logPath,

1911+

timeoutMs: 2 * 60 * 1000,

1912+

});

19041913

}

19051914
19061915

async function runInstalledAgentTurn(params) {

@@ -2692,6 +2701,13 @@ async function runModelsSet(params) {

26922701

logPath: params.logPath,

26932702

timeoutMs: 2 * 60 * 1000,

26942703

});

2704+

await runOpenClaw({

2705+

lane: params.lane,

2706+

env: params.env,

2707+

args: ["config", "set", "tools.profile", CROSS_OS_RELEASE_SMOKE_TOOLS_PROFILE],

2708+

logPath: params.logPath,

2709+

timeoutMs: 2 * 60 * 1000,

2710+

});

26952711

}

26962712
26972713

async function runAgentTurn(params) {

Original file line numberDiff line numberDiff line change

@@ -258,6 +258,7 @@ describeLive("gateway live (cli backend)", () => {

258258

const schemaProbePluginPath = CLI_MCP_SCHEMA_PROBE

259259

? await createMcpSchemaProbePlugin(tempDir)

260260

: undefined;

261+

const useMinimalToolsProfile = providerId === "codex-cli" && !schemaProbePluginPath;

261262

process.env.OPENCLAW_STATE_DIR = stateDir;

262263

const bundleMcp = backendResolved?.bundleMcp === true;

263264

const bootstrapWorkspace = await createBootstrapWorkspace(tempDir);

@@ -318,6 +319,14 @@ describeLive("gateway live (cli backend)", () => {

318319

},

319320

}

320321

: cfg.models,

322+

...(useMinimalToolsProfile

323+

? {

324+

tools: {

325+

...cfg.tools,

326+

profile: "minimal" as const,

327+

},

328+

}

329+

: {}),

321330

agents: {

322331

...cfg.agents,

323332

defaults: {

Original file line numberDiff line numberDiff line change

@@ -27,6 +27,7 @@ import {

2727

CROSS_OS_GATEWAY_READY_TIMEOUT_MS,

2828

CROSS_OS_GATEWAY_STATUS_COMMAND_TIMEOUT_MS,

2929

CROSS_OS_GATEWAY_STATUS_RPC_TIMEOUT_MS,

30+

CROSS_OS_RELEASE_SMOKE_TOOLS_PROFILE,

3031

CROSS_OS_WINDOWS_GATEWAY_READY_TIMEOUT_MS,

3132

CROSS_OS_DASHBOARD_FETCH_TIMEOUT_MS,

3233

CROSS_OS_DASHBOARD_SMOKE_TIMEOUT_MS,

@@ -160,11 +161,13 @@ describe("scripts/openclaw-cross-os-release-checks", () => {

160161

expect(allowlist).not.toContain("web-readability");

161162

});

162163
163-

it("keeps cross-OS live smoke agent turns on GPT-5.5-safe timeouts and minimal thinking", () => {

164+

it("keeps cross-OS live smoke agent turns on GPT-5.5-safe timeouts and minimal context", () => {

164165

const source = readFileSync("scripts/openclaw-cross-os-release-checks.ts", "utf8");

165166

const providerOverride = "models.providers.${params.providerConfig.extensionId}";

166167
168+

expect(CROSS_OS_RELEASE_SMOKE_TOOLS_PROFILE).toBe("minimal");

167169

expect(source).toContain('"--thinking",\n "minimal"');

170+

expect(source.match(/"tools\.profile", CROSS_OS_RELEASE_SMOKE_TOOLS_PROFILE/g)).toHaveLength(2);

168171

expect(CROSS_OS_AGENT_TURN_TIMEOUT_SECONDS).toBeGreaterThanOrEqual(600);

169172

expect(source).toContain("buildReleaseProviderConfigOverride");

170173

expect(source).toContain("models: []");

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,4 @@

1+

import { readFileSync } from "node:fs";

12

import { describe, expect, it } from "vitest";

23

import {

34

LIVE_TEST_SHARDS,

@@ -100,6 +101,13 @@ describe("scripts/test-live-shard", () => {

100101

]);

101102

});

102103
104+

it("keeps the Codex CLI backend live smoke on a minimal tool profile", () => {

105+

const source = readFileSync("src/gateway/gateway-cli-backend.live.test.ts", "utf8");

106+
107+

expect(source).toContain('providerId === "codex-cli" && !schemaProbePluginPath');

108+

expect(source).toContain('profile: "minimal" as const');

109+

});

110+
103111

it("rejects unknown shard names", () => {

104112

expect(() => selectLiveShardFiles("native-live-missing")).toThrow(/Unknown live test shard/u);

105113

});