Bento Grid Generator

PassAudited by ClawScan on May 1, 2026.

Overview

This skill appears benign: it provides local Python image-generation commands that save PNG files to /tmp.

This skill is safe to consider if you are comfortable running simple local Python/Pillow commands that create image files in /tmp. Review or change the sample text and output filenames before use if needed.

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 executes local Python and creates PNG files in /tmp.

Why it was flagged

The skill documents running local Python code to generate and save images. This is central to the stated purpose and does not show hidden or unrelated execution.

Skill content
python3 -c " ... img.save('/tmp/bento_grid.png')
Recommendation

Use it when you intend to generate these images, and change output filenames if you want to avoid overwriting existing temporary files.

What this means

The commands require Pillow to be available in the Python environment.

Why it was flagged

The skill depends on Python and the Pillow package. This is expected for image creation, and no remote installer or hidden helper code is shown.

Skill content
requires:
      bins: [python3]
      pip: [Pillow]
Recommendation

If Pillow is not already installed, install it from a trusted package source before using the skill.