Video Editor

PassAudited by ClawScan on May 1, 2026.

Overview

This is a straightforward ffmpeg-based video editing skill that works on user-selected local media and shows no hidden credential, network, persistence, or exfiltration behavior.

Before installing, be comfortable with the agent running local ffmpeg commands on selected video files. Verify ffmpeg is installed from a trusted source and check output filenames to avoid accidental overwrites.

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 will run local video-processing commands against files the user or agent selects.

Why it was flagged

The helper scripts invoke ffmpeg on user-provided input and output paths, which is necessary for video editing but means the skill can read local media files and create or overwrite output files when directed.

Skill content
ffmpeg -i "$INPUT" -ss "$START" -t "$DURATION" -c copy -avoid_negative_ts make_zero "$OUTPUT"
Recommendation

Use it only on intended media files, review output paths, and keep backups of originals when doing edits.

What this means

Installation may fail or behave inconsistently if the expected local tools are missing or installed from an untrusted source.

Why it was flagged

The registry metadata does not declare required binaries or an install spec, while the skill documentation and scripts rely on local tools such as ffmpeg; users may need to verify prerequisites manually.

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

Install ffmpeg from a trusted package source and verify any additional local tools needed by the scripts before use.