Awesome-openclaw-skills transcribe
Transcribe audio files to text using local Whisper (Docker). Use when receiving voice messages, audio files (.mp3, .m4a, .ogg, .wav, .webm), or when asked to transcribe audio content.
install
source · Clone the upstream repo
git clone https://github.com/sundial-org/awesome-openclaw-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/transcribe" ~/.claude/skills/sundial-org-awesome-openclaw-skills-transcribe && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/transcribe" ~/.openclaw/skills/sundial-org-awesome-openclaw-skills-transcribe && rm -rf "$T"
manifest:
skills/transcribe/SKILL.mdsource content
Transcribe
Local audio transcription using faster-whisper in Docker.
Installation
cd /path/to/skills/transcribe/scripts chmod +x install.sh ./install.sh
This builds the Docker image
whisper:local and installs the transcribe CLI.
Usage
transcribe /path/to/audio.mp3 [language]
- Default language:
(Spanish)es - Use
for auto-detectionauto - Outputs plain text to stdout
Examples
transcribe /tmp/voice.ogg # Spanish (default) transcribe /tmp/meeting.mp3 en # English transcribe /tmp/audio.m4a auto # Auto-detect
Supported Formats
mp3, m4a, ogg, wav, webm, flac, aac
When Receiving Voice Messages
- Save the audio attachment to a temp file
- Run
transcribe <path> - Include the transcription in your response
- Clean up the temp file
Files
- CLI wrapper (bash)scripts/transcribe
- Installation script (includes Dockerfile inline)scripts/install.sh
Notes
- Model:
(fast) - edit install.sh forsmall
(accurate)large-v3 - Fully local, no API key needed