Agent Skills
› spinabot/brigade
› openai-whisper
openai-whisper
GitHub提供本地 Whisper CLI 工具的使用指南,支持音频转写和翻译。涵盖快速启动命令、模型选择及输出格式配置,适用于无需 API Key 的离线语音处理场景。
Trigger Scenarios
需要将音频文件转换为文本
需要本地执行语音识别或翻译任务
询问 Whisper CLI 用法
Install
npx skills add spinabot/brigade --skill openai-whisper -g -y
SKILL.md
Frontmatter
{
"name": "openai-whisper",
"homepage": "https:\/\/openai.com\/research\/whisper",
"metadata": {
"brigade": {
"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
- db99206 Current 2026-07-05 10:59


