Audio Mastering CLI

ReviewAudited by ClawScan on May 10, 2026.

Overview

The skill’s purpose is clear, but it tells the agent to run a PowerShell script that is not included in the provided package, so the actual code cannot be reviewed.

Treat this as a review-needed package rather than clearly malicious. The audio-mastering goal is reasonable, but do not run it until the missing scripts/master_media.ps1 file is supplied by a trusted source and reviewed, especially because the documented command uses PowerShell ExecutionPolicy Bypass.

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 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.