Ccy Txt2img
PassAudited by ClawScan on May 7, 2026.
Overview
This appears to be a coherent offline image-generation skill, with only minor notes about local file output and an undeclared Pillow dependency.
This skill looks safe for local offline image generation. Before installing or using it, make sure Pillow comes from a trusted source and choose output filenames carefully so generated images do not overwrite important 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.
If Pillow is not already installed, the user or environment may need to install it separately.
The code depends on Pillow, while the registry shows no install spec. This is purpose-aligned but means dependency installation/provenance is outside the reviewed install mechanism.
from PIL import Image, ImageDraw, ImageFont
Install Pillow only from trusted package sources and consider adding a pinned dependency or install spec for clearer provenance.
Generated images may be written wherever the caller specifies, including over an existing file.
The skill writes generated images to a caller-supplied output path. This is expected for an image-generation skill, but it can overwrite files if used carelessly.
os.makedirs(os.path.dirname(os.path.abspath(output_path)) or ".", exist_ok=True) ... image.save(output_path, format="PNG")
Use explicit output paths in a safe project or downloads directory, and confirm before overwriting existing files.
