// Install Skill
Install Skill
Skills are third-party code from public GitHub repositories. SkillHub scans for known malicious patterns but cannot guarantee safety. Review the source code before installing.
Install globally (user-level):
npx skillhub install openclaw/openclaw/openai-whisperInstall in current project:
npx skillhub install openclaw/openclaw/openai-whisper --projectskill.install.customTargetHelp
npx skillhub install openclaw/openclaw/openai-whisper --target-dir /path/to/skillsSuggested path: ~/.claude/skills/openai-whisper/
SKILL.md Content
---
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.
License
No license was declared in this skill's source.
The full license text is available in the source repository.
View the license in the source repository — the version published there is authoritative.
// Install Skill
Install Skill
Skills are third-party code from public GitHub repositories. SkillHub scans for known malicious patterns but cannot guarantee safety. Review the source code before installing.
Install globally (user-level):
npx skillhub install openclaw/openclaw/openai-whisperInstall in current project:
npx skillhub install openclaw/openclaw/openai-whisper --projectskill.install.customTargetHelp
npx skillhub install openclaw/openclaw/openai-whisper --target-dir /path/to/skillsSuggested path: ~/.claude/skills/openai-whisper/