Wjs Editing Multicam

AdvisoryAudited by Static analysis on May 13, 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 will invoke ffmpeg on the media files and can overwrite the chosen output file.

Why it was flagged

The render script runs a local ffmpeg command to process media and write the requested MP4. This is central to the skill's video-editing purpose and uses argument lists rather than shell execution, but it is still local command execution.

Skill content
cmd = ["ffmpeg", "-nostdin", "-y"] ... subprocess.run(cmd, check=True)
Recommendation

Use it only on media files and output paths you intend to process; confirm the output filename before rendering.

What this means

The skill may fail unless ffmpeg and the needed Python packages are already available.

Why it was flagged

The metadata does not declare runtime requirements, while the included scripts rely on ffmpeg and numpy. This is not suspicious by itself, but it may surprise users or cause setup failures.

Skill content
Required binaries (all must exist): none ... No install spec — this is an instruction-only skill.
Recommendation

Before use, verify that ffmpeg and numpy are installed in the environment where the skill will run.