Gif Maker

PassAudited by ClawScan on May 1, 2026.

Overview

This skill coherently converts user-provided images into GIFs, with only ordinary local setup and file-processing risks to notice.

This appears safe for its stated purpose. Before installing, be aware that it creates a local Python virtual environment, installs Pillow, reads the image folder or sprite sheet you provide, writes the requested GIF output, and may call gifsicle if you enable compression.

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

Running the skill can download and install Python dependencies into the skill's local virtual environment.

Why it was flagged

The first-run wrapper creates a virtual environment and installs Python packages. This is disclosed and purpose-aligned, but it does rely on external package installation at runtime.

Skill content
python3 -m venv "$VENV_DIR" ... pip install --upgrade pip ... pip install -r "$SKILL_DIR/requirements.txt"
Recommendation

Install only if you are comfortable with the dependency setup; review or pin dependencies if you need stricter reproducibility.

What this means

If compression is requested, the skill will run a local gifsicle process to optimize the generated GIF.

Why it was flagged

The compression feature invokes the external gifsicle command. The command is constructed as an argument list rather than through a shell and is directly related to optional GIF compression.

Skill content
subprocess.run(cmd, check=True, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
Recommendation

Use the compression option only on systems where gifsicle is installed from a trusted source.