Video

PassAudited by VirusTotal on May 12, 2026.

Overview

Type: OpenClaw Skill Name: video Version: 1.0.1 The OpenClaw AgentSkills bundle for video processing is benign. It provides comprehensive documentation and examples for using standard video tools like `ffmpeg` and `ffprobe` for various tasks. The `SKILL.md` explicitly states that the skill 'Does NOT access files without user instruction' and 'Does NOT upload to external services automatically,' indicating an intent for safe operation. All example commands are related to legitimate video manipulation and show no evidence of data exfiltration, malicious execution, persistence, or obfuscation. While the underlying `ffmpeg` commands could be misused if the agent's input sanitization is flawed, this represents a potential vulnerability in the agent's execution environment rather than malicious intent within the skill bundle itself.

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