openbuilder 0.1.1 → 0.1.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/README.md +50 -16
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -293,35 +293,68 @@ To set up OpenBuilder as an automated meeting bot (e.g. for OpenClaw agents):
|
|
|
293
293
|
- Caption mode (`--captions`) is the most reliable on headless servers
|
|
294
294
|
- Audio mode (`--audio`) requires PulseAudio + ffmpeg + OpenAI key + Xvfb (experimental on servers)
|
|
295
295
|
|
|
296
|
-
##
|
|
296
|
+
## Platform Compatibility
|
|
297
297
|
|
|
298
|
-
OpenBuilder works
|
|
298
|
+
OpenBuilder works anywhere OpenClaw runs, as long as Playwright Chromium is available.
|
|
299
|
+
|
|
300
|
+
| Platform | Status | Notes |
|
|
301
|
+
|----------|--------|-------|
|
|
302
|
+
| **macOS** (Mac Mini, MacBook — Intel & Apple Silicon) | ✅ Tested | Chromium installs automatically. Captions mode works great. No PulseAudio needed. |
|
|
303
|
+
| **Linux x64** (Ubuntu, Debian, VPS, EC2) | ✅ Tested | May need system deps: `npx playwright-core install-deps chromium`. Headless servers need Xvfb. |
|
|
304
|
+
| **Windows** (via WSL2) | ✅ Should work | Same as Linux x64. Not yet tested — feedback welcome. |
|
|
305
|
+
| **Docker / Podman** | ✅ Should work | Run `npx playwright-core install-deps chromium` in container. Not yet tested. |
|
|
306
|
+
| **Raspberry Pi** (ARM64, Pi 4/5) | ⚠️ Not tested | Playwright Chromium ARM builds can be unreliable. May need manual Chromium install. |
|
|
307
|
+
| **Raspberry Pi 3** (ARMv7) | ❌ Not supported | Playwright does not ship ARMv7 Chromium. |
|
|
299
308
|
|
|
300
309
|
### macOS (Mac Mini, MacBook)
|
|
310
|
+
|
|
301
311
|
- `npx openbuilder` installs Chromium automatically
|
|
302
|
-
- Audio capture mode is not available (no PulseAudio) — captions mode works great
|
|
312
|
+
- Audio capture mode is not available (no PulseAudio) — captions mode is the default and works great
|
|
303
313
|
- Auth: `npx openbuilder auth` opens a browser window — sign in and press Enter
|
|
304
|
-
- For headless operation: use `--auto` auth with `.env` credentials
|
|
314
|
+
- For headless/unattended operation: use `--auto` auth with `.env` credentials
|
|
315
|
+
|
|
316
|
+
### Linux (Ubuntu, Debian, VPS, EC2)
|
|
317
|
+
|
|
318
|
+
- Install system dependencies: `npx playwright-core install-deps chromium`
|
|
319
|
+
- For headless servers (no display): start Xvfb first — `Xvfb :99 -screen 0 1280x720x24 &` and `export DISPLAY=:99`
|
|
320
|
+
- Audio capture mode available if PulseAudio + ffmpeg are installed (optional — captions mode works without them)
|
|
321
|
+
|
|
322
|
+
### VPS Providers
|
|
323
|
+
|
|
324
|
+
Works on any VPS that runs OpenClaw:
|
|
305
325
|
|
|
306
|
-
|
|
307
|
-
-
|
|
308
|
-
-
|
|
309
|
-
-
|
|
326
|
+
- **AWS** (EC2, Lightsail) — tested ✅
|
|
327
|
+
- **Oracle Cloud** (Always Free tier) — should work
|
|
328
|
+
- **Hetzner**, **Fly.io**, **GCP**, **Railway**, **Render** — should work (Linux x64)
|
|
329
|
+
- **DigitalOcean** — should work
|
|
330
|
+
|
|
331
|
+
Minimum: 1 vCPU, 1GB RAM (Chromium is the main resource consumer).
|
|
332
|
+
|
|
333
|
+
### Requirements
|
|
310
334
|
|
|
311
|
-
### What you need
|
|
312
335
|
1. **Node.js 18+**
|
|
313
336
|
2. **OpenClaw** running on the machine
|
|
314
|
-
3. **A Google account** for the bot (or join as guest)
|
|
315
|
-
4. **An AI API key**
|
|
337
|
+
3. **A Google account** for the bot (or join as guest with `--anon`)
|
|
338
|
+
4. **An AI API key** — Claude (Anthropic) or OpenAI — for meeting reports (optional but recommended)
|
|
339
|
+
|
|
340
|
+
### Quick Setup (any platform)
|
|
316
341
|
|
|
317
|
-
### Quick setup (any platform)
|
|
318
342
|
```bash
|
|
319
|
-
npx openbuilder # Install + Chromium
|
|
343
|
+
npx openbuilder # Install skill + Chromium
|
|
320
344
|
npx openbuilder auth # Sign into Google (one-time)
|
|
321
345
|
npx openbuilder config set anthropicApiKey sk-ant-... # For AI reports
|
|
322
346
|
```
|
|
323
347
|
|
|
324
|
-
Then tell your OpenClaw agent: "Join this meeting:
|
|
348
|
+
Then tell your OpenClaw agent: "Join this meeting: https://meet.google.com/..."
|
|
349
|
+
|
|
350
|
+
### Known Limitations
|
|
351
|
+
|
|
352
|
+
- **Google Meet only** — Zoom and Teams support planned for a future release
|
|
353
|
+
- **Captions depend on Google Meet's CC feature** — if Meet changes their DOM structure, caption scraping may break
|
|
354
|
+
- **Audio capture mode is experimental** on headless servers — PulseAudio routing can be unreliable. Use `--captions` for reliability
|
|
355
|
+
- **Bot appears as a participant** — other meeting participants will see "Super Liang" (or your bot's Google account name) in the People panel
|
|
356
|
+
- **Google may block automated logins** — if Google flags the bot account, re-run `npx openbuilder auth` interactively or from a different IP
|
|
357
|
+
- **One meeting at a time** per bot instance
|
|
325
358
|
|
|
326
359
|
## OpenClaw Integration
|
|
327
360
|
|
|
@@ -329,8 +362,9 @@ OpenBuilder ships as an OpenClaw skill. After running `npx openbuilder`, it's av
|
|
|
329
362
|
|
|
330
363
|
- Join meetings on your behalf
|
|
331
364
|
- Capture and summarize transcripts
|
|
332
|
-
- Generate full meeting reports
|
|
333
|
-
- Send screenshots to your chat
|
|
365
|
+
- Generate full meeting reports with action items and decisions
|
|
366
|
+
- Send screenshots to your chat on demand
|
|
367
|
+
- Tell you what's being discussed in real time
|
|
334
368
|
|
|
335
369
|
See [SKILL.md](./SKILL.md) for the full agent integration guide.
|
|
336
370
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openbuilder",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Open-source AI meeting assistant — join Google Meet, capture transcripts, generate AI-powered meeting reports with summaries, action items, and speaker analytics",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|