Agent Skills
› xuiltul/animaworks
› transcribe-tool
transcribe-tool
GitHub基于 Whisper 的音频转录工具,支持将音频文件转换为文本,并提供可选的 LLM 后处理功能。适用于会议、播客等录音文件的文字提取场景。
Trigger Scenarios
用户需要将音频文件转换为文本
需要转录会议或播客内容
从录音中提取文字信息
Install
npx skills add xuiltul/animaworks --skill transcribe-tool -g -y
SKILL.md
Frontmatter
{
"name": "transcribe-tool",
"tags": [
"audio",
"transcription",
"whisper",
"external"
],
"description": "Audio transcription tool. Converts audio files to text with Whisper and optional LLM post-processing. Use when: transcribing meetings, podcasts, or extracting text from recorded audio files."
}
Transcribe Tool
External tool for speech-to-text using Whisper (faster-whisper).
Invocation via Bash
Use Bash with animaworks-tool transcribe <subcommand> [args]:
audio — Transcribe audio file
animaworks-tool transcribe transcribe audio_file.wav [-l ja] [-m large-v3-turbo]
Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
| audio_path | string | (required) | Path to audio file |
| language | string | null | Language code (ja, en, etc.). null for auto-detect |
| model | string | "large-v3-turbo" | Whisper model name |
| raw | boolean | false | If true, skip LLM post-processing |
CLI Usage (S/C/D/G-mode)
animaworks-tool transcribe transcribe audio_file.wav [-l ja] [-m large-v3-turbo]
Notes
- faster-whisper must be installed
- CUDA-compatible ctranslate2 required for GPU acceleration
- Model is auto-downloaded on first run
Version History
- 140e43b Current 2026-07-25 09:12


