Agent Skills
› the-open-agent/openagent
› openai-whisper
openai-whisper
GitHub提供本地 Whisper CLI 工具的使用说明,支持音频转文字及翻译功能。涵盖快速启动命令、模型选择策略及缓存路径等关键配置,帮助用户高效完成离线语音识别任务。
Trigger Scenarios
需要本地进行语音转文字
需要将音频翻译成文本
使用 Whisper CLI 工具
Install
npx skills add the-open-agent/openagent --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
- 618631e Current 2026-08-20 18:17


