Oiiotool

PassAudited by ClawScan on May 1, 2026.

Overview

This is a coherent image-processing skill that runs standard local tools on user-chosen image files, with routine cautions around installing dependencies and overwriting outputs.

Before installing, verify the local tools you install, especially OpenImageIO and ffmpeg. When using the helper scripts, choose output locations deliberately because generated files may overwrite existing media.

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

You may need to install external software on your machine before the skill works.

Why it was flagged

The skill depends on third-party local tools and a PyPI-installed package, while the registry/install spec does not declare those dependencies. This is central to the stated purpose but should be noticed before setup.

Skill content
compatibility: Requires oiiotool (pip install openimageio). ffmpeg needed for video encoding.
Recommendation

Install OpenImageIO, ffmpeg, and any Python helper dependencies from trusted sources; consider pinning versions in controlled production environments.

What this means

Running the helper could overwrite an existing video at the selected or default output path.

Why it was flagged

The helper script executes ffmpeg and uses the overwrite flag for the output MP4 path. This is expected for video generation, but it can replace an existing file.

Skill content
ff_cmd = [ "ffmpeg", "-y", ... out_path ]; if not run_cmd(ff_cmd, "ffmpeg encode"):
Recommendation

Use explicit output paths, check for existing files before running conversions, and keep backups for important media.