clawdbot

openai-whisper

@clawdbot/openai-whisper
clawdbot
2,354
337 forks
Updated 1/7/2026
View on GitHub

Local speech-to-text with the Whisper CLI (no API key).

Installation

$skills install @clawdbot/openai-whisper
Claude Code
Cursor
Copilot
Codex
Antigravity

Details

Pathskills/openai-whisper/SKILL.md
Branchmain
Scoped Name@clawdbot/openai-whisper

Usage

After installing, this skill will be available to your AI coding assistant.

Verify installation:

skills list

Skill Instructions


name: openai-whisper description: Local speech-to-text with the Whisper CLI (no API key). homepage: https://openai.com/research/whisper metadata: {"clawdbot":{"emoji":"🎙️","requires":{"bins":["whisper"]},"install":[{"id":"brew","kind":"brew","formula":"openai-whisper","bins":["whisper"],"label":"Install OpenAI Whisper (brew)"}]}}

Whisper (CLI)

Use whisper to transcribe audio locally.

Quick start

  • whisper /path/audio.mp3 --model medium --output_format txt --output_dir .
  • whisper /path/audio.m4a --task translate --output_format srt

Notes

  • Models download to ~/.cache/whisper on first run.
  • --model defaults to turbo on this install.
  • Use smaller models for speed, larger for accuracy.