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

推荐订阅源

有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
Hugging Face - Blog
Hugging Face - Blog
博客园 - 聂微东
量子位
S
SegmentFault 最新的问题
V
Visual Studio Blog
博客园 - 【当耐特】
Apple Machine Learning Research
Apple Machine Learning Research
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
小众软件
小众软件
Stack Overflow Blog
Stack Overflow Blog
Vercel News
Vercel News
D
Docker
J
Java Code Geeks
博客园 - 三生石上(FineUI控件)
博客园 - Franky
Recent Announcements
Recent Announcements
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
MongoDB | Blog
MongoDB | Blog
D
DataBreaches.Net
Y
Y Combinator Blog
云风的 BLOG
云风的 BLOG
V
V2EX

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: attach Google Meet realtime bridge · openclaw/opencl...
steipete · 2026-04-24 · via Recent Commits to openclaw:main

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

205205

voiceCall: { enabled: true, requestTimeoutMs: 30000, dtmfDelayMs: 2500 },

206206

realtime: {

207207

provider: "openai",

208+

introMessage: "Say exactly: I'm here and listening.",

208209

toolPolicy: "safe-read-only",

209210

},

210211

oauth: {},

@@ -284,7 +285,7 @@ describe("google-meet plugin", () => {

284285

properties: {

285286

action: {

286287

type: "string",

287-

enum: ["join", "status", "setup_status", "resolve_space", "preflight", "leave"],

288+

enum: ["join", "status", "setup_status", "resolve_space", "preflight", "leave", "speak"],

288289

},

289290

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

290291

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

@@ -520,11 +521,16 @@ describe("google-meet plugin", () => {

520521

});

521522522523

it("joins Chrome on a paired node without local Chrome or BlackHole", async () => {

523-

const { methods, nodesList, nodesInvoke } = setup({

524-

defaultTransport: "chrome-node",

525-

defaultMode: "transcribe",

526-

chromeNode: { node: "parallels-macos" },

527-

});

524+

const { methods, nodesList, nodesInvoke } = setup(

525+

{

526+

defaultTransport: "chrome-node",

527+

defaultMode: "transcribe",

528+

chromeNode: { node: "parallels-macos" },

529+

},

530+

{

531+

nodesInvokeResult: { payload: { launched: true } },

532+

},

533+

);

528534

const handler = methods.get("googlemeet.join") as

529535

| ((ctx: {

530536

params: Record<string, unknown>;

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

669675

name: string;

670676

args: unknown;

671677

}) => void;

678+

onReady?: () => void;

672679

tools?: unknown[];

673680

}

674681

| undefined;

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

680687

submitToolResult: vi.fn(),

681688

acknowledgeMark: vi.fn(),

682689

close: vi.fn(),

690+

triggerGreeting: vi.fn(),

683691

isConnected: vi.fn(() => true),

684692

};

685693

const provider: RealtimeVoiceProviderPlugin = {

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

756764

inputStdout.write(Buffer.from([1, 2, 3]));

757765

callbacks?.onAudio(Buffer.from([4, 5]));

758766

callbacks?.onMark?.("mark-1");

767+

callbacks?.onReady?.();

759768

callbacks?.onToolCall?.({

760769

itemId: "item-1",

761770

callId: "tool-call-1",

@@ -772,6 +781,9 @@ describe("google-meet plugin", () => {

772781

expect(sendAudio).toHaveBeenCalledWith(Buffer.from([1, 2, 3]));

773782

expect(outputStdinWrites).toEqual([Buffer.from([4, 5])]);

774783

expect(bridge.acknowledgeMark).toHaveBeenCalled();

784+

expect(bridge.triggerGreeting).toHaveBeenCalledWith("Say exactly: I'm here and listening.");

785+

handle.speak("Say exactly: hello from the meeting.");

786+

expect(bridge.triggerGreeting).toHaveBeenLastCalledWith("Say exactly: hello from the meeting.");

775787

expect(callbacks).toMatchObject({

776788

tools: [

777789

expect.objectContaining({

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

808820

name: string;

809821

args: unknown;

810822

}) => void;

823+

onReady?: () => void;

811824

tools?: unknown[];

812825

}

813826

| undefined;

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

819832

submitToolResult: vi.fn(),

820833

acknowledgeMark: vi.fn(),

821834

close: vi.fn(),

835+

triggerGreeting: vi.fn(),

822836

isConnected: vi.fn(() => true),

823837

};

824838

const provider: RealtimeVoiceProviderPlugin = {

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

879893

});

880894881895

callbacks?.onAudio(Buffer.from([1, 2, 3]));

896+

callbacks?.onReady?.();

882897

callbacks?.onToolCall?.({

883898

itemId: "item-1",

884899

callId: "tool-call-1",

@@ -907,6 +922,9 @@ describe("google-meet plugin", () => {

907922

text: "Use the launch update.",

908923

});

909924

});

925+

expect(bridge.triggerGreeting).toHaveBeenCalledWith("Say exactly: I'm here and listening.");

926+

handle.speak("Say exactly: hello from the node.");

927+

expect(bridge.triggerGreeting).toHaveBeenLastCalledWith("Say exactly: hello from the node.");

910928

expect(callbacks).toMatchObject({

911929

tools: [

912930

expect.objectContaining({