@openclaw/google-meet 2026.5.3 → 2026.5.4-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/openclaw.plugin.json
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
"defaultMode": {
|
|
30
30
|
"label": "Default Mode",
|
|
31
|
-
"help": "
|
|
31
|
+
"help": "Agent uses realtime transcription plus regular OpenClaw TTS. Bidi uses the realtime voice model directly. Transcribe observes only."
|
|
32
32
|
},
|
|
33
33
|
"chrome.audioBackend": {
|
|
34
34
|
"label": "Chrome Audio Backend",
|
|
@@ -93,6 +93,11 @@
|
|
|
93
93
|
"help": "Command-pair audio format. PCM16 24 kHz is the default Chrome/Meet path; G.711 mu-law 8 kHz remains available for legacy command pairs.",
|
|
94
94
|
"advanced": true
|
|
95
95
|
},
|
|
96
|
+
"chrome.audioBufferBytes": {
|
|
97
|
+
"label": "Audio Buffer Bytes",
|
|
98
|
+
"help": "SoX processing buffer for generated Chrome command-pair audio commands. Lower values reduce latency but may underrun on busy hosts.",
|
|
99
|
+
"advanced": true
|
|
100
|
+
},
|
|
96
101
|
"chrome.audioBridgeCommand": {
|
|
97
102
|
"label": "Audio Bridge Command",
|
|
98
103
|
"advanced": true
|
|
@@ -139,16 +144,34 @@
|
|
|
139
144
|
"help": "Compatibility setting from the old post-connect DTMF flow. Twilio Meet joins now play DTMF before realtime connect.",
|
|
140
145
|
"advanced": true
|
|
141
146
|
},
|
|
147
|
+
"voiceCall.postDtmfSpeechDelayMs": {
|
|
148
|
+
"label": "Legacy Post-DTMF Speech Delay (ms)",
|
|
149
|
+
"help": "Compatibility setting from the old delayed-speech flow. Twilio Meet joins now carry the intro as the initial Voice Call message.",
|
|
150
|
+
"advanced": true
|
|
151
|
+
},
|
|
142
152
|
"voiceCall.introMessage": {
|
|
143
153
|
"label": "Voice Call Intro Message",
|
|
144
154
|
"advanced": true
|
|
145
155
|
},
|
|
156
|
+
"realtime.strategy": {
|
|
157
|
+
"label": "Realtime Strategy",
|
|
158
|
+
"help": "Legacy realtime alias setting. Use mode=agent or mode=bidi for new Meet joins."
|
|
159
|
+
},
|
|
146
160
|
"realtime.provider": {
|
|
147
|
-
"label": "
|
|
148
|
-
"help": "
|
|
161
|
+
"label": "Speech Provider",
|
|
162
|
+
"help": "Compatibility fallback for both realtime transcription and bidi voice. Prefer realtime.transcriptionProvider and realtime.voiceProvider for new configs."
|
|
163
|
+
},
|
|
164
|
+
"realtime.transcriptionProvider": {
|
|
165
|
+
"label": "Realtime Transcription Provider",
|
|
166
|
+
"help": "Agent mode uses this provider to transcribe meeting audio before regular OpenClaw TTS answers."
|
|
167
|
+
},
|
|
168
|
+
"realtime.voiceProvider": {
|
|
169
|
+
"label": "Bidi Voice Provider",
|
|
170
|
+
"help": "Bidi mode uses this realtime voice provider. Falls back to realtime.provider when unset."
|
|
149
171
|
},
|
|
150
172
|
"realtime.model": {
|
|
151
|
-
"label": "Realtime Model",
|
|
173
|
+
"label": "Bidi Realtime Model",
|
|
174
|
+
"help": "Only used by mode=bidi. Agent mode answers with the configured OpenClaw agent and regular TTS.",
|
|
152
175
|
"advanced": true
|
|
153
176
|
},
|
|
154
177
|
"realtime.instructions": {
|
|
@@ -223,8 +246,8 @@
|
|
|
223
246
|
},
|
|
224
247
|
"defaultMode": {
|
|
225
248
|
"type": "string",
|
|
226
|
-
"enum": ["
|
|
227
|
-
"default": "
|
|
249
|
+
"enum": ["agent", "bidi", "transcribe"],
|
|
250
|
+
"default": "agent"
|
|
228
251
|
},
|
|
229
252
|
"chrome": {
|
|
230
253
|
"type": "object",
|
|
@@ -267,11 +290,17 @@
|
|
|
267
290
|
"enum": ["pcm16-24khz", "g711-ulaw-8khz"],
|
|
268
291
|
"default": "pcm16-24khz"
|
|
269
292
|
},
|
|
293
|
+
"audioBufferBytes": {
|
|
294
|
+
"type": "number",
|
|
295
|
+
"default": 4096
|
|
296
|
+
},
|
|
270
297
|
"audioInputCommand": {
|
|
271
298
|
"type": "array",
|
|
272
299
|
"default": [
|
|
273
300
|
"sox",
|
|
274
301
|
"-q",
|
|
302
|
+
"--buffer",
|
|
303
|
+
"4096",
|
|
275
304
|
"-t",
|
|
276
305
|
"coreaudio",
|
|
277
306
|
"BlackHole 2ch",
|
|
@@ -297,6 +326,8 @@
|
|
|
297
326
|
"default": [
|
|
298
327
|
"sox",
|
|
299
328
|
"-q",
|
|
329
|
+
"--buffer",
|
|
330
|
+
"4096",
|
|
300
331
|
"-t",
|
|
301
332
|
"raw",
|
|
302
333
|
"-r",
|
|
@@ -395,6 +426,10 @@
|
|
|
395
426
|
"type": "number",
|
|
396
427
|
"default": 2500
|
|
397
428
|
},
|
|
429
|
+
"postDtmfSpeechDelayMs": {
|
|
430
|
+
"type": "number",
|
|
431
|
+
"default": 5000
|
|
432
|
+
},
|
|
398
433
|
"introMessage": {
|
|
399
434
|
"type": "string"
|
|
400
435
|
}
|
|
@@ -404,16 +439,28 @@
|
|
|
404
439
|
"type": "object",
|
|
405
440
|
"additionalProperties": false,
|
|
406
441
|
"properties": {
|
|
442
|
+
"strategy": {
|
|
443
|
+
"type": "string",
|
|
444
|
+
"enum": ["agent", "bidi"],
|
|
445
|
+
"default": "agent"
|
|
446
|
+
},
|
|
407
447
|
"provider": {
|
|
408
448
|
"type": "string",
|
|
409
449
|
"default": "openai"
|
|
410
450
|
},
|
|
451
|
+
"transcriptionProvider": {
|
|
452
|
+
"type": "string",
|
|
453
|
+
"default": "openai"
|
|
454
|
+
},
|
|
455
|
+
"voiceProvider": {
|
|
456
|
+
"type": "string"
|
|
457
|
+
},
|
|
411
458
|
"model": {
|
|
412
459
|
"type": "string"
|
|
413
460
|
},
|
|
414
461
|
"instructions": {
|
|
415
462
|
"type": "string",
|
|
416
|
-
"default": "You are joining a private Google Meet as an OpenClaw
|
|
463
|
+
"default": "You are joining a private Google Meet as an OpenClaw voice transport. Keep spoken replies brief and natural. In agent mode, wait for OpenClaw consult results and speak them exactly. In bidi mode, answer directly and call openclaw_agent_consult for deeper reasoning, current information, or tools."
|
|
417
464
|
},
|
|
418
465
|
"introMessage": {
|
|
419
466
|
"type": "string",
|
|
@@ -478,5 +525,8 @@
|
|
|
478
525
|
}
|
|
479
526
|
}
|
|
480
527
|
}
|
|
528
|
+
},
|
|
529
|
+
"configContracts": {
|
|
530
|
+
"compatibilityMigrationPaths": ["plugins.entries.google-meet.config.realtime.provider"]
|
|
481
531
|
}
|
|
482
532
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/google-meet",
|
|
3
|
-
"version": "2026.5.
|
|
3
|
+
"version": "2026.5.4-beta.2",
|
|
4
4
|
"description": "OpenClaw Google Meet participant plugin",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"openclaw": "workspace:*"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
|
-
"openclaw": ">=2026.5.
|
|
19
|
+
"openclaw": ">=2026.5.4-beta.2"
|
|
20
20
|
},
|
|
21
21
|
"peerDependenciesMeta": {
|
|
22
22
|
"openclaw": {
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
"minHostVersion": ">=2026.4.20"
|
|
34
34
|
},
|
|
35
35
|
"compat": {
|
|
36
|
-
"pluginApi": ">=2026.5.
|
|
36
|
+
"pluginApi": ">=2026.5.4-beta.2"
|
|
37
37
|
},
|
|
38
38
|
"build": {
|
|
39
|
-
"openclawVersion": "2026.5.
|
|
39
|
+
"openclawVersion": "2026.5.4-beta.2"
|
|
40
40
|
},
|
|
41
41
|
"release": {
|
|
42
42
|
"publishToClawHub": true,
|