skills$openclaw/voice-transcribe
darinkishore1.3k

by darinkishore

voice-transcribe – OpenClaw Skill

voice-transcribe is an OpenClaw Skills integration for writing workflows. Transcribe audio files using OpenAI's gpt-4o-mini-transcribe model with vocabulary hints and text replacements. Requires uv (https://docs.astral.sh/uv/).

1.3k stars10.0k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing

Skill Snapshot

namevoice-transcribe
descriptionTranscribe audio files using OpenAI's gpt-4o-mini-transcribe model with vocabulary hints and text replacements. Requires uv (https://docs.astral.sh/uv/). OpenClaw Skills integration.
ownerdarinkishore
repositorydarinkishore/voice-transcribe
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @darinkishore/voice-transcribe
last updatedFeb 7, 2026

Maintainer

darinkishore

darinkishore

Maintains voice-transcribe in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
_meta.json
290 B
replacements.txt
102 B
SKILL.md
1.4 KB
vocab.txt
162 B
SKILL.md

name: voice-transcribe description: Transcribe audio files using OpenAI's gpt-4o-mini-transcribe model with vocabulary hints and text replacements. Requires uv (https://docs.astral.sh/uv/).

voice-transcribe

transcribe audio files using openai's gpt-4o-mini-transcribe model.

when to use

when receiving voice memos (especially via whatsapp), just run:

uv run /Users/darin/clawd/skills/voice-transcribe/transcribe <audio-file>

then respond based on the transcribed content.

fixing transcription errors

if darin says a word was transcribed wrong, add it to vocab.txt (for hints) or replacements.txt (for guaranteed fix). see sections below.

supported formats

  • mp3, mp4, mpeg, mpga, m4a, wav, webm, ogg, opus

examples

# transcribe a voice memo
transcribe /tmp/voice-memo.ogg

# pipe to other tools
transcribe /tmp/memo.ogg | pbcopy

setup

  1. add your openai api key to /Users/darin/clawd/skills/voice-transcribe/.env:
    OPENAI_API_KEY=sk-...
    

custom vocabulary

add words to vocab.txt (one per line) to help the model recognize names/jargon:

Clawdis
Clawdbot

text replacements

if the model still gets something wrong, add a replacement to replacements.txt:

wrong spelling -> correct spelling

notes

  • assumes english (no language detection)
  • uses gpt-4o-mini-transcribe model specifically
  • caches by sha256 of audio file
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install voice-transcribe?

Run openclaw add @darinkishore/voice-transcribe in your terminal. This installs voice-transcribe into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/darinkishore/voice-transcribe. Review commits and README documentation before installing.