This skill adds a CLI-first raster image generation and editing workflow that works across Claude Code, GitHub Copilot CLI, and Codex. It provides two modes: a default CLI mode that uses a bundled scripts/image_gen.py for generation/editing, and an explicit Codex mode for environments that prefer Codex-native generation. The skill centralises image tasks (generate, edit, generate-batch) and enforces safe defaults and project-aware output handling.
Use this skill when the user asks to generate hero banners, product mockups, blog headers, photoreal scenes, or to edit existing raster images (background removal, compositing, text replacement). Prefer it when you need a reproducible CLI workflow or when Codex-native generation is explicitly requested. Do not use for vector or SVG-native tasks.
Works well with Claude Code and GitHub Copilot CLI; offers an explicit Codex CLI bridge for Codex-native hosts.
GPT Image skill provides a CLI-first workflow for generating and editing images via OpenAI's GPT Image API, with an explicit Codex delegation path. The bundled script (image_gen.py) is well-structured with argparse subcommands, async batch generation, retry logic, prompt augmentation, and downscaling support. Script exited with code 2 (missing required subcommand) under DRY_RUN — expected behavior since no API key or command was provided.
Clean skill with no security concerns. Script uses argparse properly with thorough input validation. The long SKILL.md is well-organized with clear decision points and mode separation. Dry-run mode is a nice safety feature.