用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/javimosch/open-claw-skills --skill auto-whisper-safe命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | auto-whisper-safe |
| version | 1.0.0 |
| description | RAM-safe voice transcription with auto-chunking — works on 16GB machines without crashes |
| emoji | 🎙️ |
| tags | ["whisper","transcription","voice","audio","ram-safe"] |
| requires | {"bins":["whisper","ffmpeg"]} |
Transcribe voice messages and long audio files using OpenAI Whisper without crashing your machine. Designed for 16GB RAM systems running other processes (like OpenClaw agents).
Whisper's turbo and large models use 6-10GB RAM. On a 16GB machine running OpenClaw + Ollama + other services, this causes OOM crashes. Existing Whisper skills don't handle this.
base model by default (~1.5GB RAM — safe on any 16GB machine)# Basic usage
./transcribe.sh /path/to/audio.ogg
# Custom model (if you have more RAM)
WHISPER_MODEL=small ./transcribe.sh /path/to/audio.ogg
# Custom language
WHISPER_LANG=en ./transcribe.sh /path/to/audio.ogg
# Custom output directory
./transcribe.sh /path/to/audio.ogg /path/to/output/
| Model | RAM | Speed | Accuracy | Recommended For |
|---|---|---|---|---|
tiny | ~1GB | ⚡⚡⚡ | ★★ | Quick previews, low-RAM systems |
base | ~1.5GB | ⚡⚡ | ★★★ | Default — best balance ✅ |
small | ~2.5GB | ⚡ | ★★★★ | When accuracy matters more |
medium | ~5GB | 🐢 | ★★★★★ | 32GB+ RAM only |
turbo | ~6GB | 🐢🐢 | ★★★★★ | Dedicated transcription machines |
Add to your agent's BOOTSTRAP.md:
## Voice Message Handling
When you receive `<media:audio>`, ALWAYS transcribe first:
1. Run: `./skills/auto-whisper-safe/transcribe.sh <audio-path>`
2. Read the output transcript file
3. Respond based on the transcribed content
Do this automatically — voice messages are meant to be transcribed.
| Variable | Default | Description |
|---|---|---|
WHISPER_MODEL | base | Whisper model size |
WHISPER_LANG | en | Audio language (ISO code) |
# macOS
brew install openai-whisper ffmpeg
# Ubuntu/Debian
pip install openai-whisper
apt install ffmpeg
# Verify
whisper --help && ffmpeg -version
Tested on Ubuntu 22.04, 16GB RAM, running OpenClaw (10 agents) + Ollama simultaneously:
| Audio Length | Model | RAM Peak | Time | Result |
|---|---|---|---|---|
| 2 min voice memo | base | 1.4GB | ~15s | ✅ Perfect |
| 12 min podcast clip | base | 1.5GB (chunked) | ~90s | ✅ 2 chunks, seamless |
| 45 min interview | base | 1.5GB (chunked) | ~6min | ✅ 5 chunks, seamless |
| 2 min voice memo | tiny | 0.9GB | ~8s | ✅ Good enough for quick reads |
ffmpeg handles the conversion, so virtually any format works:
.ogg (Telegram voice messages).mp3, .m4a, .wav, .flac.webm (browser recordings).opus (WhatsApp voice messages)