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

OpenRoom: A Web-Based Desktop GUI for Visualizing AI Agent Skills
OpenRoom is a web-based desktop environment where AI agents operate, featuring real-time updates to system state like diaries and files during chat interactions, plus a livestream mode for multi-bot interaction.

OpenClaw Memos Plugin Addresses Memory Handoff Issues in AI Coding Agents
A Reddit user shares how the Claude code leak highlighted problems with memory handoff in AI coding agents, where bloated transcripts cause issues during model switching. They implemented the memos plugin in OpenClaw with selective recall strategy to compress recent work and drop stale tool calls.

Apfel: Free CLI Tool to Access Apple's On-Device LLM on macOS
Apfel v0.6.13 is a Swift 6.3 binary that exposes Apple's built-in LLM as a CLI tool, OpenAI-compatible server, and interactive chat. It runs 100% on-device with no API keys or costs, using the 4,096-token model shipped with macOS 26+ on Apple Silicon Macs.

Universal CLAUDE.md reduces Claude output tokens by 63% in benchmarks
A developer created a universal CLAUDE.md file that reduces Claude's output tokens by 63% across five benchmark tests while maintaining technical accuracy. The file addresses common Claude behaviors like verbose responses, unnecessary formatting, and unsolicited suggestions.