Oiiotool

PassAudited by VirusTotal on May 11, 2026.

Overview

Type: OpenClaw Skill Name: oiiotool Version: 0.1.1 The oiiotool skill bundle is a comprehensive set of tools and instructions for professional image processing and color management using OpenImageIO. The included Python scripts (exposure_sweep.py and seq_to_video.py) are well-structured utility scripts that use subprocess to call legitimate binaries (oiiotool and ffmpeg) for their stated purposes. No evidence of data exfiltration, malicious execution, or prompt injection was found.

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

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.