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

推荐订阅源

量子位
WordPress大学
WordPress大学
小众软件
小众软件
云风的 BLOG
云风的 BLOG
IT之家
IT之家
人人都是产品经理
人人都是产品经理
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
博客园 - 【当耐特】
T
Tailwind CSS Blog
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
宝玉的分享
宝玉的分享
博客园 - Franky
F
Fortinet All Blogs
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
GbyAI
GbyAI
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
D
Docker
博客园 - 聂微东
C
Check Point Blog
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): expose voice call delay schema · opencl...
vincentkoc · 2026-05-04 · via Recent Commits to openclaw:main

@@ -4,6 +4,7 @@ import { tmpdir } from "node:os";

44

import path from "node:path";

55

import { PassThrough, Writable } from "node:stream";

66

import { createContext, Script } from "node:vm";

7+

import { validateJsonSchemaValue, type JsonSchemaObject } from "openclaw/plugin-sdk/config-schema";

78

import type { RealtimeTranscriptionProviderPlugin } from "openclaw/plugin-sdk/realtime-transcription";

89

import type { RealtimeVoiceProviderPlugin } from "openclaw/plugin-sdk/realtime-voice";

910

import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";

@@ -479,17 +480,13 @@ describe("google-meet plugin", () => {

479480

});

480481

});

481482482-

it("declares barge-in config metadata in the plugin entry and manifest", () => {

483+

it("declares advanced config metadata in the plugin entry and manifest", () => {

483484

const manifest = JSON.parse(

484485

readFileSync(new URL("./openclaw.plugin.json", import.meta.url), "utf8"),

485486

) as {

486487

uiHints?: Record<string, unknown>;

487-

configSchema?: {

488-

properties?: {

489-

chrome?: {

490-

properties?: Record<string, unknown>;

491-

};

492-

};

488+

configSchema?: JsonSchemaObject & {

489+

properties?: Record<string, JsonSchemaObject & { properties?: Record<string, unknown> }>;

493490

};

494491

};

495492

const entry = plugin as unknown as {

@@ -504,13 +501,15 @@ describe("google-meet plugin", () => {

504501

"chrome.bargeInRmsThreshold": expect.objectContaining({ advanced: true }),

505502

"chrome.bargeInPeakThreshold": expect.objectContaining({ advanced: true }),

506503

"chrome.bargeInCooldownMs": expect.objectContaining({ advanced: true }),

504+

"voiceCall.postDtmfSpeechDelayMs": expect.objectContaining({ advanced: true }),

507505

});

508506

expect(manifest.uiHints).toMatchObject({

509507

"chrome.audioBufferBytes": expect.objectContaining({ advanced: true }),

510508

"chrome.bargeInInputCommand": expect.objectContaining({ advanced: true }),

511509

"chrome.bargeInRmsThreshold": expect.objectContaining({ advanced: true }),

512510

"chrome.bargeInPeakThreshold": expect.objectContaining({ advanced: true }),

513511

"chrome.bargeInCooldownMs": expect.objectContaining({ advanced: true }),

512+

"voiceCall.postDtmfSpeechDelayMs": expect.objectContaining({ advanced: true }),

514513

});

515514

expect(manifest.configSchema?.properties?.chrome?.properties).toMatchObject({

516515

audioBufferBytes: expect.objectContaining({ type: "number", default: 4096 }),

@@ -522,6 +521,19 @@ describe("google-meet plugin", () => {

522521

bargeInPeakThreshold: expect.objectContaining({ type: "number", default: 2500 }),

523522

bargeInCooldownMs: expect.objectContaining({ type: "number", default: 900 }),

524523

});

524+

expect(manifest.configSchema?.properties?.voiceCall?.properties).toMatchObject({

525+

postDtmfSpeechDelayMs: expect.objectContaining({ type: "number", default: 5000 }),

526+

});

527+

const result = validateJsonSchemaValue({

528+

schema: manifest.configSchema!,

529+

cacheKey: "google-meet.manifest.voice-call-post-dtmf-speech-delay",

530+

value: {

531+

voiceCall: {

532+

postDtmfSpeechDelayMs: 750,

533+

},

534+

},

535+

});

536+

expect(result.ok).toBe(true);

525537

});

526538527539

it("resolves the realtime consult agent id", () => {