Simple stt(sound-to-text) locally

PassAudited by ClawScan on Mar 9, 2026.

Overview

The skill is internally consistent with its stated purpose: it installs and runs OpenAI Whisper locally, downloads a model, and does not request credentials or contact unexpected remote endpoints.

This skill appears to be what it says: a local Whisper-based STT installer + small runtime. Before installing: 1) Inspect install.sh (already included) and be comfortable with it running system package installs (apt-get/yum/brew) and pip installs; those commands can require sudo. 2) Expect a network download of the Whisper model (~244MB for 'small') and increased disk usage in ~/.cache/whisper and the output directory. 3) Consider running the install inside a container, VM, or non-root user path (change VENV_DIR/OUTPUT_DIR) if you prefer isolation. 4) If you need to audit dependencies, verify the 'openai-whisper' PyPI package/source. 5) No credentials or unexpected external endpoints were found, but pip installs execute package code — only run if you trust the sources or run in an isolated environment.