Video

PassAudited by ClawScan on May 1, 2026.

Overview

This is a coherent instruction-only video processing skill that uses standard local media tools and clearly limits itself to user-provided files.

This skill appears safe to install for local video processing. Before using it, make sure ffmpeg and ffprobe are trusted installations, review any batch command, and only point it at files or folders you intend to process.

Findings (3)

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 agent may run local video-processing commands that read input media and write output files.

Why it was flagged

The skill is designed to run local FFmpeg commands that create transformed media files. This is expected for the stated purpose, but users should still review commands and paths before execution.

Skill content
Runs FFmpeg commands on user request
Recommendation

Use explicit input and output filenames, keep backups of originals, and review batch commands before allowing them to run.

What this means

If run in the wrong directory, a batch workflow could create many outputs or consume significant disk and CPU resources.

Why it was flagged

The documented batch workflow can process every matching video in a directory. This is purpose-aligned, but folder-wide operations should be user-directed and scoped.

Skill content
for f in *.mp4; do
  ffmpeg -i "$f" -vf "lut3d=my_look.cube" -c:a copy "graded_$f"
done
Recommendation

Run batch examples only in the intended folder and confirm the file pattern before execution.

What this means

Using optional captioning or upscaling features may require separately installed software.

Why it was flagged

The skill references optional third-party local tools but does not install them or specify sources. This is not suspicious for an instruction-only skill, but users should install optional tools from trusted sources.

Skill content
Optional:
- `whisper` — local transcription for captions
- `realesrgan` — AI upscaling
Recommendation

Install optional tools only from official or trusted package sources and verify they are the expected binaries.