
from free-imagegen109
A fully local text-to-image pipeline that renders structured SVGs and exports PNGs—designed for thumbnails, text covers, infographics, and article-to-image work
A comprehensive local SVG-to-PNG image generation skill with multiple modes (text covers, infographics, illustrations, article-to-image story plans). The main script is well-structured at 3873 lines with proper argparse, clear mode separation, and progressive rendering controls. Scripts behave as expected in dry-run: main script requires prompt args, HTTP server stays running. Security is reasonable — subprocess calls use list form (no shell injection), but there's a hardcoded developer-local path and CORS wildcard in the HTTP service, plus user-controlled file paths without sanitization.
Impressive skill for fully local image generation. The hardcoded path is the main annoyance. No external network calls, no credentials, no telemetry. The subprocess usage is safe (list form, no shell injection). Path traversal in HTTP service is a concern if exposed beyond localhost.