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.

What this means

The skill may fail or behave differently unless the needed local audio tools are already installed.

Why it was flagged

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.

Skill content
ffprobe -v quiet -print_format json -show_format "$AUDIO" 2>/dev/null | \
    jq -r
Recommendation

Verify ffmpeg, ffprobe, and jq are installed from trusted sources before using the scripts.

What this means

If the output path points to an existing file, that file can be replaced.

Why it was flagged

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.

Skill content
ffmpeg -y -v warning -i "$INPUT" -codec:a $CODEC $QUAL_OPTS "$OUTPUT"
Recommendation

Choose output filenames carefully or modify the scripts to prompt before overwriting important files.