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

推荐订阅源

P
Proofpoint News Feed
Martin Fowler
Martin Fowler
The GitHub Blog
The GitHub Blog
B
Blog RSS Feed
U
Unit 42
阮一峰的网络日志
阮一峰的网络日志
量子位
GbyAI
GbyAI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
云风的 BLOG
云风的 BLOG
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
L
LangChain Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园_首页
IT之家
IT之家
V
Visual Studio Blog
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
宝玉的分享
宝玉的分享
Apple Machine Learning Research
Apple Machine Learning Research
I
InfoQ
D
Docker
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
feat: add realtime voice OAuth controls · openclaw/opencl...
Solvely-Coli · 2026-05-10 · via Recent Commits to openclaw:main

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

25622562

expect(focusCall[3]).toEqual({ progress: false });

25632563

});

256425642565-

it("does not mutate realtime browser prompts when status is requested", async () => {

2565+

it("refreshes blocked realtime browser health read-only when status is requested", async () => {

25662566

let openedTab = false;

25672567

const { methods, nodesInvoke } = setup(

25682568

{

@@ -2574,7 +2574,22 @@ describe("google-meet plugin", () => {

25742574

const raw = params as { path?: string; body?: { url?: string; targetId?: string } };

25752575

if (command === "browser.proxy") {

25762576

if (raw.path === "/tabs") {

2577-

return { payload: { result: { running: true, tabs: [] } } };

2577+

return {

2578+

payload: {

2579+

result: {

2580+

running: true,

2581+

tabs: openedTab

2582+

? [

2583+

{

2584+

targetId: "tab-1",

2585+

title: "Meet",

2586+

url: "https://meet.google.com/abc-defg-hij",

2587+

},

2588+

]

2589+

: [],

2590+

},

2591+

},

2592+

};

25782593

}

25792594

if (raw.path === "/tabs/open") {

25802595

openedTab = true;

@@ -2621,18 +2636,31 @@ describe("google-meet plugin", () => {

26212636

const join = (await invokeGoogleMeetGatewayMethodForTest(methods, "googlemeet.join", {

26222637

url: "https://meet.google.com/abc-defg-hij",

26232638

})) as { session: { id: string } };

2639+

openedTab = true;

26242640

nodesInvoke.mockClear();

2625264126262642

const status = (await invokeGoogleMeetGatewayMethodForTest(methods, "googlemeet.status", {

26272643

sessionId: join.session.id,

26282644

})) as { session?: { chrome?: { health?: { manualActionRequired?: boolean } } } };

2629264526302646

expect(status.session?.chrome?.health?.manualActionRequired).toBe(true);

2631-

expect(

2632-

nodesInvoke.mock.calls.some(

2633-

([params]) => requireRecord(params, "node invoke").command === "browser.proxy",

2634-

),

2635-

).toBe(false);

2647+

expect(nodesInvoke).toHaveBeenCalledWith(

2648+

expect.objectContaining({

2649+

command: "browser.proxy",

2650+

params: expect.objectContaining({

2651+

path: "/act",

2652+

body: expect.objectContaining({ targetId: "tab-1" }),

2653+

}),

2654+

}),

2655+

);

2656+

expect(nodesInvoke).not.toHaveBeenCalledWith(

2657+

expect.objectContaining({

2658+

command: "browser.proxy",

2659+

params: expect.objectContaining({

2660+

path: "/permissions/grant",

2661+

}),

2662+

}),

2663+

);

26362664

});

2637266526382666

it("retries caption enable until the captions button is available", async () => {

@@ -3573,6 +3601,52 @@ describe("google-meet plugin", () => {

35733601

expect(result.speechOutputTimedOut).toBe(false);

35743602

});

357536033604+

it("uses the requested bidirectional realtime mode for test speech", async () => {

3605+

const runtime = new GoogleMeetRuntime({

3606+

config: resolveGoogleMeetConfig({ defaultMode: "agent" }),

3607+

fullConfig: {} as never,

3608+

runtime: {} as never,

3609+

logger: noopLogger,

3610+

});

3611+

const session: GoogleMeetSession = {

3612+

id: "meet_1",

3613+

url: "https://meet.google.com/abc-defg-hij",

3614+

transport: "chrome",

3615+

mode: "bidi",

3616+

state: "active",

3617+

createdAt: "2026-04-27T00:00:00.000Z",

3618+

updatedAt: "2026-04-27T00:00:00.000Z",

3619+

participantIdentity: "signed-in Google Chrome profile",

3620+

realtime: {

3621+

enabled: true,

3622+

strategy: "bidi",

3623+

provider: "openai",

3624+

toolPolicy: "safe-read-only",

3625+

},

3626+

chrome: {

3627+

audioBackend: "blackhole-2ch",

3628+

launched: true,

3629+

health: { audioOutputActive: true, lastOutputBytes: 10 },

3630+

},

3631+

notes: [],

3632+

};

3633+

vi.spyOn(runtime, "list").mockReturnValue([]);

3634+

const join = vi.spyOn(runtime, "join").mockResolvedValue({ session, spoken: true });

3635+3636+

await runtime.testSpeech({

3637+

url: "https://meet.google.com/abc-defg-hij",

3638+

mode: "bidi",

3639+

message: "Say exactly: hello.",

3640+

});

3641+3642+

expect(join).toHaveBeenCalledWith(

3643+

expect.objectContaining({

3644+

message: "Say exactly: hello.",

3645+

mode: "bidi",

3646+

}),

3647+

);

3648+

});

3649+35763650

it("rejects observe-only mode for test speech", async () => {

35773651

const runtime = new GoogleMeetRuntime({

35783652

config: resolveGoogleMeetConfig({}),