OpenUtter: Query Google Meet Transcripts Live via OpenClaw

OpenUtter is a tool that lets your OpenClaw agent attend Google Meet meetings for you. It captures the live transcript and allows you to query it in real-time via text message.
How It Works
The tool uses Playwright to launch a stealth Chromium instance that joins a Google Meet via an invite link as a guest or authenticated account. It injects a MutationObserver into Meet's DOM to capture caption updates as they appear. The tool deduplicates word-by-word UI updates into a clean log format: [timestamp] Speaker: Text. This log is streamed in real-time through your OpenClaw event bus.
Key Features
- Live Querying: While a meeting is running, you can text your OpenClaw agent questions like "what are they talking about right now?" The agent pulls the last 20 lines of the live transcript and sends them back.
- Screenshot Capture: Sending "Take a screenshot" triggers a full-screen capture that appears in your chat within seconds.
- Multiple Bridge Support: Use the
--channelflag to route the stream to configured OpenClaw bridges including Telegram, WhatsApp, Slack, and Discord. - LLM Integration: The source mentions piping the transcript to an LLM summarizer that pushes action items to Slack when the call ends.
Setup
Installation requires two commands:
npx openutter
npx playwright-core install chromiumThe GitHub repository is available at https://github.com/sumansid/openutter.
Practical Use
This approach enables monitoring meetings without being physically present. As described in the source: "Texting 'what did they just decide?' 30 minutes into a call you're not on is a different way to work." The live query functionality appears to be the most frequently used feature according to the user.
📖 Read the full source: r/openclaw
👀 See Also

SideX: A Tauri-Based Port of Visual Studio Code
SideX is a port of Visual Studio Code that replaces Electron with Tauri, using a Rust backend and the OS's native webview. The project claims the same architecture with 96% smaller size, with core editing and terminal functionality currently working.
Claude to LinkedIn Posts Directly from Chat: Full Workflow
A Reddit user shares a workflow using the Contentdrips MCP connector to write, design, and publish LinkedIn posts directly from Claude AI chat.

Canary: AI QA Agent for Automated Testing Based on Code Changes
Canary is an AI QA agent that reads codebases, analyzes pull request diffs, and generates end-to-end tests for affected user workflows. It connects to preview environments, runs tests, and comments results directly on PRs with recordings.

DAUB MCP Server Lets Claude Generate and Render UIs via JSON Specs
DAUB is an MCP server that enables Claude to generate UI interfaces directly from natural language prompts, producing structured JSON specs that render as live interfaces without code generation or compilation. It exposes four tools including generate_ui, render_spec, validate_spec, and get_component_catalog.