Agent Skills
› linuxhsj/openclaw-zero-token
› openai-whisper
openai-whisper
GitHub使用 Whisper CLI 在本地进行音频转写和翻译,无需 API Key。支持指定模型、输出格式及目录,适用于语音识别任务。
Trigger Scenarios
需要本地转录音频文件
需要将音频翻译成文本
Install
npx skills add linuxhsj/openclaw-zero-token --skill openai-whisper -g -y
SKILL.md
Frontmatter
{
"name": "openai-whisper",
"homepage": "https:\/\/openai.com\/research\/whisper",
"metadata": {
"openclaw": {
"emoji": "🎤",
"install": [
{
"id": "brew",
"bins": [
"whisper"
],
"kind": "brew",
"label": "Install OpenAI Whisper (brew)",
"formula": "openai-whisper"
}
],
"requires": {
"bins": [
"whisper"
]
}
}
},
"description": "Local speech-to-text with the Whisper CLI (no API key)."
}
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/whisperon first run. --modeldefaults toturboon this install.- Use smaller models for speed, larger for accuracy.
Version History
- a654bcf Current 2026-07-25 07:13


