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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
The Blog of Author Tim Ferriss
博客园 - 司徒正美
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
量子位
S
SegmentFault 最新的问题
博客园 - 聂微东
博客园 - 【当耐特】
J
Java Code Geeks
美团技术团队
Hugging Face - Blog
Hugging Face - Blog
H
Help Net Security
V
V2EX
人人都是产品经理
人人都是产品经理
博客园 - Franky
罗磊的独立博客
Engineering at Meta
Engineering at Meta
A
About on SuperTechFans
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
云风的 BLOG
云风的 BLOG
Y
Y Combinator Blog
Apple Machine Learning Research
Apple Machine Learning Research

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): require voice call setup entry · opencl...
vincentkoc · 2026-05-04 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

5656

- Google Meet: split realtime provider config into agent-mode transcription and bidi-mode voice providers, and migrate legacy Gemini Live bidi configs with `doctor --fix`, so Gemini Live can back direct bidi fallback without breaking the default OpenClaw agent talk-back path.

5757

- Google Meet: expose `voiceCall.postDtmfSpeechDelayMs` in the plugin manifest schema and setup hints, so manifest-based config editing accepts the runtime-supported Twilio delay key. Thanks @vincentkoc.

5858

- Google Meet: keep explicit non-Google `realtime.provider` values as the transcription provider compatibility fallback when `realtime.transcriptionProvider` is unset. Thanks @vincentkoc.

59+

- Google Meet: make Twilio setup status require an enabled `voice-call` plugin entry instead of treating a missing entry as ready. Thanks @vincentkoc.

5960

- Telegram: render shared interactive reply buttons in reply delivery so plugin approval messages show inline keyboards. (#76238) Thanks @keshavbotagent.

6061

- Agents/cli-runner: drop a saved `claude-cli` resume sessionId at preparation time when its on-disk transcript no longer exists in `~/.claude/projects/`, so a stale binding from a half-installed `update.run` cannot trap follow-up runs (auto-reply / Telegram direct) in a `claude --resume` timeout loop; the run starts fresh and the new sessionId is written back through the existing post-run flow. (#77030; refs #77011) Thanks @openperf.

6162

- Release validation: install the cross-OS TypeScript harness through Windows-safe Node/npm shims so native Windows package checks reach the OpenClaw smoke suites instead of exiting before artifact capture. Thanks @vincentkoc.

Original file line numberDiff line numberDiff line change

@@ -1868,6 +1868,41 @@ describe("google-meet plugin", () => {

18681868

);

18691869

});

18701870
1871+

it("reports missing voice-call plugin entry for explicit Twilio transport", async () => {

1872+

vi.stubEnv("TWILIO_ACCOUNT_SID", "AC123");

1873+

vi.stubEnv("TWILIO_AUTH_TOKEN", "secret");

1874+

vi.stubEnv("TWILIO_FROM_NUMBER", "+15550001234");

1875+

const { tools } = setup(

1876+

{ defaultTransport: "chrome" },

1877+

{

1878+

fullConfig: {

1879+

plugins: {

1880+

allow: ["google-meet", "voice-call"],

1881+

entries: {},

1882+

},

1883+

},

1884+

},

1885+

);

1886+

const tool = tools[0] as {

1887+

execute: (

1888+

id: string,

1889+

params: unknown,

1890+

) => Promise<{ details: { ok?: boolean; checks?: unknown[] } }>;

1891+

};

1892+
1893+

const result = await tool.execute("id", { action: "setup_status", transport: "twilio" });

1894+
1895+

expect(result.details.ok).toBe(false);

1896+

expect(result.details.checks).toEqual(

1897+

expect.arrayContaining([

1898+

expect.objectContaining({

1899+

id: "twilio-voice-call-plugin",

1900+

ok: false,

1901+

}),

1902+

]),

1903+

);

1904+

});

1905+
18711906

it("reports missing Twilio dial plan for explicit Twilio setup", async () => {

18721907

vi.stubEnv("TWILIO_ACCOUNT_SID", "AC123");

18731908

vi.stubEnv("TWILIO_AUTH_TOKEN", "secret");

Original file line numberDiff line numberDiff line change

@@ -225,7 +225,8 @@ export function getGoogleMeetSetupStatus(

225225

Object.hasOwn(pluginEntries, "voice-call"));

226226

if (shouldCheckTwilioDelegation) {

227227

const voiceCallAllowed = !Array.isArray(pluginAllow) || pluginAllow.includes("voice-call");

228-

const voiceCallEnabled = voiceCallEntry.enabled !== false;

228+

const hasVoiceCallEntry = Object.hasOwn(pluginEntries, "voice-call");

229+

const voiceCallEnabled = hasVoiceCallEntry && voiceCallEntry.enabled !== false;

229230

checks.push({

230231

id: "twilio-voice-call-plugin",

231232

ok: voiceCallAllowed && voiceCallEnabled,