Image magic resizer

PassAudited by ClawScan on May 1, 2026.

Overview

This skill transparently wraps ImageMagick to resize local image files, with only expected local file-writing and dependency-installation considerations.

This appears safe for normal image resizing. Before installing, ensure you trust the ImageMagick package source, and when using the skill, choose output paths carefully to avoid overwriting files.

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

The agent can produce resized image files at the chosen output path, so an incorrect path could overwrite an existing file.

Why it was flagged

The skill invokes a local ImageMagick CLI command on user-provided paths and geometry. The arguments are quoted and the behavior matches the resize purpose, but it can create or overwrite output files within the user's filesystem permissions.

Skill content
magick "$input" -resize "$geometry" "$output"
Recommendation

Use explicit output paths when important and review before resizing over valuable files.

What this means

The security of the resizing operation partly depends on the installed ImageMagick package.

Why it was flagged

The skill relies on installing ImageMagick from an external package manager. This is expected for an ImageMagick-based resizer and no hidden installer behavior is shown.

Skill content
Install specifications: [0] brew | formula: imagemagick
Recommendation

Install ImageMagick from a trusted package manager and keep it updated.