OpenClaw Skill for Local Meeting Transcription with Whisper

A developer has released an OpenClaw skill called ghostmeet that enables local meeting transcription using OpenAI's Whisper model. This tool is designed to work with browser-based meetings like Google Meet, Zoom web, and Teams web.
How It Works
- A Chrome Extension captures audio from any browser tab using
chrome.tabCapture, limited to the active tab - Whisper transcribes the audio locally in real-time with approximately 10-second intervals
- Users can ask their assistant "summarize my last meeting" to get Claude-generated key decisions and action items
Privacy and Local Processing
- All audio and transcription processing happens locally on your machine using Whisper
- Summaries optionally use the Anthropic API, but this can be skipped for full privacy
- Desktop applications (Zoom app, Teams app) won't work - only browser tabs are supported
Setup and Installation
Install via ClawHub:
clawhub install ghostmeetOr set up manually:
git clone https://github.com/Higangssh/ghostmeet.git
docker compose up -dThe developer notes that speaker diarization is next on the roadmap and welcomes feedback on the project.
📖 Read the full source: r/openclaw
👀 See Also

One-Command Docker Setup for OpenClaw with Full-Disk Encryption and Monitoring
A Docker setup for OpenClaw that provides full-disk encryption guides, Tini as PID 1, built-in monitoring tools, and data stored as plain files on the host. Deployment requires just two commands: git clone and ./shell.

Agent Forge: Open Source Tool Scaffolds Multi-Agent Pipelines for Claude Code
Agent Forge is a Claude Code skill that generates complete multi-agent pipelines from use case descriptions. It creates prompt files, orchestrator scripts, data flow directories, and GitHub Actions configs based on patterns observed in existing multi-agent systems.

Workaround for ChatGPT Project Migration Gap: Export Scripts and Prompts
A developer created Python scripts and Claude prompts to migrate conversations from ChatGPT to Claude when ChatGPT's data export lacks project membership information. The solution extracts conversations using titles captured from the interface.

Approval Boundary Tool for Claude Code Repository Work
A developer built an approval boundary tool that adds a review step before local execution when using Claude Code for repository work. The tool follows a loop: see the plan first, approve once, let the run happen locally, and keep proof afterward.