What problem does it solve? Converting speech recordings into text usually requires uploading audio to a cloud API, which raises privacy concerns and recurring costs. This Skill runs OpenAI's Whisper model locally through its CLI, so audio never leaves your machine and no API key is needed. ## Core Features & Use Cases - Local Speech-to-Text: Transcribe audio files such as MP3 and M4A entirely offline using the whisper command. - Translation and Subtitles: Use the translate task and SRT output format to produce translated subtitles from foreign-language audio. - Model Size Control: Choose smaller models for speed or larger models for accuracy, with models cached in ~/.cache/whisper after first download. - Use Case: Record a meeting as an M4A file, then run whisper with the medium model to generate a plain-text transcript saved alongside the recording. ## Quick Start Transcribe the attached audio file meeting.mp3 to a text file using the whisper CLI with the medium model.