Audio Mastering CLI

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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 as packaged, or users may end up running a separately obtained PowerShell script whose behavior was not included in this review.

Why it was flagged

The skill’s main workflow depends on scripts/master_media.ps1, but the provided manifest contains only README.md and SKILL.md, so the referenced helper script is missing and cannot be reviewed.

Skill content
powershell -ExecutionPolicy Bypass -File "{baseDir}/scripts/master_media.ps1" -InputFile "<ruta-archivo>" -MakeMp3
Recommendation

Only install or run this skill if the referenced script is present from a trusted source and you can inspect it before use.

What this means

Running local scripts can read and write files on the machine according to the script’s behavior.

Why it was flagged

The skill intentionally runs a local PowerShell script and bypasses PowerShell execution policy. Local command execution is expected for a CLI audio-processing skill, but users should notice it.

Skill content
powershell -ExecutionPolicy Bypass -File "{baseDir}/scripts/master_media.ps1"
Recommendation

Review the script contents before running, and prefer a packaged, versioned implementation over manually supplied scripts.