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.
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.
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.
powershell -ExecutionPolicy Bypass -File "{baseDir}/scripts/master_media.ps1" -InputFile "<ruta-archivo>" -MakeMp3Only install or run this skill if the referenced script is present from a trusted source and you can inspect it before use.
Running local scripts can read and write files on the machine according to the script’s behavior.
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.
powershell -ExecutionPolicy Bypass -File "{baseDir}/scripts/master_media.ps1"Review the script contents before running, and prefer a packaged, versioned implementation over manually supplied scripts.
