Agent Skills
› the-open-agent/openagent
› openai-whisper
openai-whisper
GitHub提供本地语音转文字功能,支持使用 Whisper CLI 工具处理音频文件。适用于需要离线转录或翻译音频内容的场景,无需 API 密钥,支持多种模型选择以平衡速度与精度。
Trigger Scenarios
用户请求将音频文件转换为文本
用户需要将音频内容翻译成其他语言
用户询问如何使用本地语音识别工具
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


