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

推荐订阅源

V
Visual Studio Blog
Y
Y Combinator Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
L
LangChain Blog
美团技术团队
N
Netflix TechBlog - Medium
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog
博客园 - 司徒正美
爱范儿
爱范儿
D
DataBreaches.Net
月光博客
月光博客
U
Unit 42
B
Blog RSS Feed
Engineering at Meta
Engineering at Meta
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
MongoDB | Blog
MongoDB | Blog
腾讯CDC

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(google-meet): add latest conference command · opencl...
steipete · 2026-04-25 · via Recent Commits to openclaw:main

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

1414

createGoogleMeetSpace,

1515

fetchGoogleMeetArtifacts,

1616

fetchGoogleMeetAttendance,

17+

fetchLatestGoogleMeetConferenceRecord,

1718

fetchGoogleMeetSpace,

1819

normalizeGoogleMeetSpaceName,

1920

} from "./src/meet.js";

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

343344

"setup_status",

344345

"resolve_space",

345346

"preflight",

347+

"latest",

346348

"artifacts",

347349

"attendance",

348350

"recover_current_tab",

@@ -496,6 +498,32 @@ describe("google-meet plugin", () => {

496498

);

497499

});

498500501+

it("fetches only the latest Meet conference record for a meeting", async () => {

502+

const fetchMock = stubMeetArtifactsApi();

503+504+

await expect(

505+

fetchLatestGoogleMeetConferenceRecord({

506+

accessToken: "token",

507+

meeting: "abc-defg-hij",

508+

}),

509+

).resolves.toMatchObject({

510+

input: "abc-defg-hij",

511+

space: { name: "spaces/abc-defg-hij" },

512+

conferenceRecord: { name: "conferenceRecords/rec-1" },

513+

});

514+515+

const listCall = fetchMock.mock.calls.find(([input]) => {

516+

const url = requestUrl(input);

517+

return url.pathname === "/v2/conferenceRecords";

518+

});

519+

if (!listCall) {

520+

throw new Error("Expected conferenceRecords.list fetch call");

521+

}

522+

const listUrl = requestUrl(listCall[0]);

523+

expect(listUrl.searchParams.get("pageSize")).toBe("1");

524+

expect(listUrl.searchParams.get("filter")).toBe('space.name = "spaces/abc-defg-hij"');

525+

});

526+499527

it("lists Meet attendance rows with participant sessions", async () => {

500528

const fetchMock = stubMeetArtifactsApi();

501529

@@ -695,6 +723,26 @@ describe("google-meet plugin", () => {

695723

expect(result.details.attendance).toEqual([expect.objectContaining({ displayName: "Alice" })]);

696724

});

697725726+

it("reports the latest conference record through the tool", async () => {

727+

stubMeetArtifactsApi();

728+

const { tools } = setup();

729+

const tool = tools[0] as {

730+

execute: (

731+

id: string,

732+

params: unknown,

733+

) => Promise<{ details: { conferenceRecord?: { name?: string } } }>;

734+

};

735+736+

const result = await tool.execute("id", {

737+

action: "latest",

738+

accessToken: "token",

739+

expiresAt: Date.now() + 120_000,

740+

meeting: "abc-defg-hij",

741+

});

742+743+

expect(result.details.conferenceRecord).toMatchObject({ name: "conferenceRecords/rec-1" });

744+

});

745+698746

it("fails setup status when the configured Chrome node is not connected", async () => {

699747

const { tools } = setup(

700748

{

@@ -918,6 +966,37 @@ describe("google-meet plugin", () => {

918966

}

919967

});

920968969+

it("CLI latest prints the latest conference record", async () => {

970+

stubMeetArtifactsApi();

971+

const program = new Command();

972+

const stdout = captureStdout();

973+

registerGoogleMeetCli({

974+

program,

975+

config: resolveGoogleMeetConfig({}),

976+

ensureRuntime: async () => ({}) as unknown as GoogleMeetRuntime,

977+

});

978+979+

try {

980+

await program.parseAsync(

981+

[

982+

"googlemeet",

983+

"latest",

984+

"--access-token",

985+

"token",

986+

"--expires-at",

987+

String(Date.now() + 120_000),

988+

"--meeting",

989+

"abc-defg-hij",

990+

],

991+

{ from: "user" },

992+

);

993+

expect(stdout.output()).toContain("space: spaces/abc-defg-hij");

994+

expect(stdout.output()).toContain("conference record: conferenceRecords/rec-1");

995+

} finally {

996+

stdout.restore();

997+

}

998+

});

999+9211000

it("CLI artifacts writes markdown output", async () => {

9221001

stubMeetArtifactsApi();

9231002

const program = new Command();