Agent SkillsAgent Skills
clawdbot

openai-whisper

@clawdbot/openai-whisper
clawdbot
342,888
67775 forks
Updated 3/31/2026
View on GitHub

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

Installation

$npx agent-skills-cli 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:

npx agent-skills-cli 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: { "openclaw": { "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.