Audio Handler
PassAudited by ClawScan on May 1, 2026.
Overview
This appears to be a straightforward local audio-processing skill, but it relies on undeclared local tools and can overwrite chosen output files.
This skill is reasonable for local audio work. Before installing, make sure the needed audio tools come from trusted sources, and be careful with output paths because the helper scripts may overwrite existing files.
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.
The skill may fail or behave differently unless the needed local audio tools are already installed.
The included scripts depend on external binaries such as ffprobe and jq, while the provided requirements declare no required binaries. This is an installation/metadata gap, not hidden behavior.
ffprobe -v quiet -print_format json -show_format "$AUDIO" 2>/dev/null | \
jq -rVerify ffmpeg, ffprobe, and jq are installed from trusted sources before using the scripts.
If the output path points to an existing file, that file can be replaced.
The script uses ffmpeg with the -y flag, which overwrites an existing output file without prompting. This is common for conversion helpers, but it affects local files selected by the user.
ffmpeg -y -v warning -i "$INPUT" -codec:a $CODEC $QUAL_OPTS "$OUTPUT"
Choose output filenames carefully or modify the scripts to prompt before overwriting important files.
