Video Editor

PassAudited by VirusTotal on May 11, 2026.

Overview

Type: OpenClaw Skill Name: video-editor Version: 1.0.0 The video-editor skill bundle provides a collection of shell scripts that wrap ffmpeg for common media processing tasks such as trimming, merging, and resizing videos. The scripts (e.g., cut.sh, merge.sh, resize.sh) use standard shell quoting for arguments and follow the logic described in the SKILL.md documentation. No evidence of data exfiltration, malicious execution, or prompt injection was found; the bundle functions as a legitimate utility for video editing.

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