From sundial-org-awesome-openclaw-skills-4
Transcribes audio to text locally using OpenAI Whisper. Runs fully offline after model download. Supports multiple model sizes and optional word timestamps.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sundial-org-awesome-openclaw-skills-4:local-whisperThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Local speech-to-text using OpenAI's Whisper. **Fully offline** after initial model download.
Local speech-to-text using OpenAI's Whisper. Fully offline after initial model download.
# Basic
~/.clawdbot/skills/local-whisper/scripts/local-whisper audio.wav
# Better model
~/.clawdbot/skills/local-whisper/scripts/local-whisper audio.wav --model turbo
# With timestamps
~/.clawdbot/skills/local-whisper/scripts/local-whisper audio.wav --timestamps --json
| Model | Size | Notes |
|---|---|---|
tiny | 39M | Fastest |
base | 74M | Default |
small | 244M | Good balance |
turbo | 809M | Best speed/quality |
large-v3 | 1.5GB | Maximum accuracy |
--model/-m — Model size (default: base)--language/-l — Language code (auto-detect if omitted)--timestamps/-t — Include word timestamps--json/-j — JSON output--quiet/-q — Suppress progressUses uv-managed venv at .venv/. To reinstall:
cd ~/.clawdbot/skills/local-whisper
uv venv .venv --python 3.12
uv pip install --python .venv/bin/python click openai-whisper torch --index-url https://download.pytorch.org/whl/cpu
npx claudepluginhub sundial-org/awesome-openclaw-skillsTranscribes audio files locally using the Whisper CLI. Supports multiple output formats and translation tasks without requiring an API key.
Transcribes audio files locally using the Whisper CLI. Supports multiple output formats and translation tasks without requiring an API key.
Switches voice transcription from OpenAI Whisper API to local whisper.cpp on Apple Silicon. Currently WhatsApp-only. Requires voice-transcription skill first.