Ccy Txt2img
PassAudited by VirusTotal on May 7, 2026.
Overview
Type: OpenClaw Skill Name: ccy-txt2img Version: 1.0.1 The skill bundle provides local offline image generation using the Pillow library, supporting text-to-image and rule-driven shape/icon rendering. Analysis of scripts/txt2img.py and scripts/smart_draw.py shows standard image processing logic with no evidence of data exfiltration, unauthorized network access, or malicious intent. The functionality aligns with the stated purpose of creating simple diagrams and text-based images.
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.
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.
