openclaw-whisper-asr
Analysis
This looks like a normal local Whisper speech-to-text setup, with the main caveat that installation involves manual shell commands and unpinned downloads/builds from GitHub.
Findings (2)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
git clone https://github.com/ggml-org/whisper.cpp.git ... sh ./models/download-ggml-model.sh base
The setup relies on cloning an unpinned external repository and running its model download script. This is expected for a Whisper setup, but users should trust or pin the upstream source.
sudo apt-get install -y ffmpeg ... cmake --build build -j --config Release
The documented setup includes privileged package installation and local compilation. These commands are central to the stated local ASR purpose and are presented as user-directed setup steps.
