skills$openclaw/transcribe
javicasper7.3k

by javicasper

transcribe – OpenClaw Skill

transcribe is an OpenClaw Skills integration for writing workflows. 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.

7.3k stars3.4k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing

Skill Snapshot

nametranscribe
descriptionTranscribe 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. OpenClaw Skills integration.
ownerjavicasper
repositoryjavicasper/transcribe
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @javicasper/transcribe
last updatedFeb 7, 2026

Maintainer

javicasper

javicasper

Maintains transcribe in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
scripts
install.sh
1.9 KB
_meta.json
276 B
SKILL.md
1.3 KB
SKILL.md

name: transcribe description: 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.

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: es (Spanish)
  • Use auto for auto-detection
  • 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

  1. Save the audio attachment to a temp file
  2. Run transcribe <path>
  3. Include the transcription in your response
  4. Clean up the temp file

Files

  • scripts/transcribe - CLI wrapper (bash)
  • scripts/install.sh - Installation script (includes Dockerfile inline)

Notes

  • Model: small (fast) - edit install.sh for large-v3 (accurate)
  • Fully local, no API key needed
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 transcribe?

Run openclaw add @javicasper/transcribe in your terminal. This installs 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/javicasper/transcribe. Review commits and README documentation before installing.