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

推荐订阅源

MyScale Blog
MyScale Blog
J
Java Code Geeks
Vercel News
Vercel News
A
About on SuperTechFans
G
Google Developers Blog
C
Check Point Blog
腾讯CDC
N
Netflix TechBlog - Medium
博客园 - 司徒正美
S
SegmentFault 最新的问题
D
DataBreaches.Net
博客园_首页
美团技术团队
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
量子位
雷峰网
雷峰网
IT之家
IT之家
小众软件
小众软件
Blog — PlanetScale
Blog — PlanetScale
博客园 - 三生石上(FineUI控件)
H
Help Net Security
宝玉的分享
宝玉的分享
博客园 - 叶小钗

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(google-meet): guide timeout recovery · openclaw/openc...
steipete · 2026-04-25 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -96,6 +96,7 @@ Docs: https://docs.openclaw.ai

9696

- Media tools: honor the configured web-fetch SSRF policy for media understanding, image/music/video generation references, and PDF inputs, so explicit RFC2544 opt-ins cover WebChat OSS uploads without weakening defaults. Fixes #71300. (#71321) Thanks @neeravmakwana.

9797

- Agents/TTS: suppress successful spoken transcripts from verbose chat tool output when structured voice media is already queued, while preserving text output for non-builtin tool-name collisions. Fixes #71282. Thanks @neeravmakwana.

9898

- Plugins/Google Meet: reuse existing Meet tabs and active sessions across harmless URL query differences, avoiding duplicate Chrome windows when agents retry a join. Thanks @steipete.

99+

- Plugins/Google Meet: tell agents to recover already-open Meet tabs after browser timeouts, and make the dev CLI release its build lock if compiler spawning fails. Thanks @steipete.

99100

- Gateway/sessions: recover main-agent turns interrupted by a gateway restart from stale transcript-lock evidence, avoiding stuck `status: "running"` sessions without broad post-boot transcript scans. Fixes #70555. Thanks @bitloi.

100101

- Codex approvals: keep command approval responses within Codex app-server `availableDecisions`, including deny/cancel fallbacks for prompts that do not offer `decline`. (#71338) Thanks @Lucenx9.

101102

- Codex harness: reject same-thread app-server notifications without `turnId` or `turn.id` after a bound turn starts, preventing unscoped events from mutating or completing the active reply. (#71317) Thanks @Lucenx9.

Original file line numberDiff line numberDiff line change

@@ -202,8 +202,9 @@ describe("google-meet plugin", () => {

202202
203203

it("uses a provider-safe flat tool parameter schema", () => {

204204

const { tools } = setup();

205-

const tool = tools[0] as { parameters: unknown };

205+

const tool = tools[0] as { description?: string; parameters: unknown };

206206
207+

expect(tool.description).toContain("recover_current_tab");

207208

expect(JSON.stringify(tool.parameters)).not.toContain("anyOf");

208209

expect(tool.parameters).toMatchObject({

209210

type: "object",

@@ -222,6 +223,7 @@ describe("google-meet plugin", () => {

222223

"speak",

223224

"test_speech",

224225

],

226+

description: expect.stringContaining("recover_current_tab"),

225227

},

226228

transport: { type: "string", enum: ["chrome", "chrome-node", "twilio"] },

227229

mode: { type: "string", enum: ["realtime", "transcribe"] },

Original file line numberDiff line numberDiff line change

@@ -150,7 +150,7 @@ const GoogleMeetToolSchema = Type.Object({

150150

"test_speech",

151151

],

152152

description:

153-

"Google Meet action to run. create creates a meeting and joins it by default; pass join=false to only mint a meeting URL.",

153+

"Google Meet action to run. create creates and joins by default; pass join=false to only mint a URL. After a timeout or unclear browser state, call recover_current_tab before retrying join.",

154154

}),

155155

join: Type.Optional(

156156

Type.Boolean({

@@ -391,7 +391,8 @@ export default definePluginEntry({

391391

api.registerTool({

392392

name: "google_meet",

393393

label: "Google Meet",

394-

description: "Join and track Google Meet sessions through Chrome or Twilio.",

394+

description:

395+

"Join and track Google Meet sessions through Chrome or Twilio. If a Meet tab is already open after a timeout, call recover_current_tab before retrying join to report login, permission, or admission blockers without opening another tab.",

395396

parameters: GoogleMeetToolSchema,

396397

async execute(_toolCallId, params) {

397398

const raw = asParamRecord(params);

Original file line numberDiff line numberDiff line change

@@ -535,8 +535,20 @@ const waitForSpawnedProcess = async (childProcess, deps) => {

535535
536536

try {

537537

return await new Promise((resolve) => {

538+

let settled = false;

539+

const settle = (res) => {

540+

if (settled) {

541+

return;

542+

}

543+

settled = true;

544+

resolve(res);

545+

};

546+

childProcess.on("error", (error) => {

547+

logRunner(`Spawn failed: ${error?.message ?? String(error)}`, deps);

548+

settle({ exitCode: 1, exitSignal: null, forwardedSignal });

549+

});

538550

childProcess.on("exit", (exitCode, exitSignal) => {

539-

resolve({ exitCode, exitSignal, forwardedSignal });

551+

settle({ exitCode, exitSignal, forwardedSignal });

540552

});

541553

});

542554

} finally {

Original file line numberDiff line numberDiff line change

@@ -807,6 +807,40 @@ describe("run-node script", () => {

807807

});

808808

});

809809
810+

it("returns failure and releases the build lock when the compiler spawn errors", async () => {

811+

await withTempDir({ prefix: "openclaw-run-node-" }, async (tmp) => {

812+

const spawn = (cmd: string, args: string[] = []) => {

813+

if (cmd === process.execPath && args[0] === "scripts/tsdown-build.mjs") {

814+

const events = new EventEmitter();

815+

queueMicrotask(() => events.emit("error", new Error("spawn failed")));

816+

return {

817+

on: (event: string, cb: (code: number | null, signal: string | null) => void) => {

818+

events.on(event, cb);

819+

return undefined;

820+

},

821+

};

822+

}

823+

return createExitedProcess(0);

824+

};

825+
826+

const exitCode = await runNodeMain({

827+

cwd: tmp,

828+

args: ["status"],

829+

env: {

830+

...process.env,

831+

OPENCLAW_FORCE_BUILD: "1",

832+

OPENCLAW_RUNNER_LOG: "0",

833+

},

834+

spawn,

835+

execPath: process.execPath,

836+

platform: process.platform,

837+

});

838+
839+

expect(exitCode).toBe(1);

840+

expect(fsSync.existsSync(path.join(tmp, ".artifacts", "run-node-build.lock"))).toBe(false);

841+

});

842+

});

843+
810844

it("forwards wrapper SIGTERM to the active openclaw child and returns 143", async () => {

811845

await withTempDir({ prefix: "openclaw-run-node-" }, async (tmp) => {

812846

await setupTrackedProject(tmp, {