From sundial-org-awesome-openclaw-skills-4
Transcribes voice messages locally on Apple Silicon Mac using MLX Whisper. Free, private, no API costs. Designed for Telegram, WhatsApp, and other messaging apps.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sundial-org-awesome-openclaw-skills-4:whisper-mlx-localThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Transcribe voice messages for free on Telegram and WhatsApp.** No API keys. No costs. Runs on your Mac.
Transcribe voice messages for free on Telegram and WhatsApp. No API keys. No costs. Runs on your Mac.
Voice transcription APIs cost money:
If you transcribe a lot of Telegram voice messages, it adds up.
This skill runs Whisper locally on your Mac. Same quality, zero cost.
tools.media.audio config with the one belowpip3 install -r requirements.txt
python3 scripts/daemon.py
First run will download the Whisper model (~1.5GB). Wait for "Ready" message.
Add this to your ~/.openclaw/openclaw.json:
{
"tools": {
"media": {
"audio": {
"enabled": true,
"models": [
{
"type": "cli",
"command": "~/.openclaw/workspace/skills/local-whisper/scripts/transcribe.sh",
"args": ["{{MediaPath}}"],
"timeoutSeconds": 60
}
]
}
}
}
}
openclaw gateway restart
Now voice messages from Telegram, WhatsApp, etc. will be transcribed locally for free!
./scripts/transcribe.sh voice_message.ogg
Instead of paying for OpenAI API to transcribe incoming voice messages, point OpenClaw to this local daemon. Free transcription forever.
cp com.local-whisper.plist ~/Library/LaunchAgents/
launchctl load ~/Library/LaunchAgents/com.local-whisper.plist
Daemon runs at localhost:8787:
curl -X POST http://localhost:8787/transcribe -F "[email protected]"
# {"text": "Hello world", "language": "en"}
Any language → English:
./scripts/transcribe.sh spanish_audio.ogg --translate
MIT
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4Switches voice transcription from OpenAI Whisper API to local whisper.cpp on Apple Silicon. Currently WhatsApp-only. Requires voice-transcription skill first.
Transcribes audio to text locally using MLX Whisper on Apple Silicon. No API key needed, supports multiple models and output formats.
Switches voice transcription from OpenAI Whisper API to local whisper.cpp on Apple Silicon for WhatsApp channels. On-device, no network or API key needed.