gpt-atelier

Solid

OpenAI GPT Image generation and editing (gpt-image-2, 1.5, 1, mini). Text-to-image, mask-based inpainting, multi-reference composition, multi-turn conversational editing via Responses API, streaming with partial images. This skill should be used when generating or editing images via OpenAI's image models, when near-perfect text rendering in images is needed, when mask-based region-aware editing is required, when multi-turn conversational image editing is desired, or when streaming progressive image delivery is needed. Complements nano-banana-pro (Gemini) as a parallel image generation backend.

AI & Automation 41 stars 3 forks Updated yesterday MIT

Install

View on GitHub

Quality Score: 84/100

Stars 20%
54
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# GPT Atelier OpenAI GPT Image generation and editing. Wraps both the Image API (one-shot) and Responses API (multi-turn conversational) with 6 scripts covering generate, edit, compose, converse, stream, and test workflows. **Prerequisite:** `OPENAI_API_KEY` environment variable. ## Models | Flag | Model | Strengths | |------|-------|-----------| | (default) | `gpt-image-2` | Reasoning-based, ~99% text rendering, up to 8 consistent images, 4K, streaming | | `--fast` | `gpt-image-1.5` | Region-aware editing, 4x faster, cheaper | | `--mini` | `gpt-image-1-mini` | Cheapest ($0.006/image low quality) | ## Quick Start ```bash # Test connectivity python3 scripts/test_connection.py --check-models # Generate an image python3 scripts/generate_image.py "A Minoan bull-leaper under golden light" # Compare models side-by-side (HTML page) python3 scripts/compare_models.py "A bronze seal stamp in Minoan style" --all --open # Edit with mask python3 scripts/edit_image.py "Replace the sky with a dramatic sunset" photo.png --mask sky_mask.png # Compose from references python3 scripts/compose_images.py "Create a gift basket containing these items" item1.png item2.png item3.png # Multi-turn editing session python3 scripts/converse_image.py # Streaming with partial images python3 scripts/stream_image.py "An ancient fresco being restored" --partials 3 ``` Image API scripts share: `--output DIR`, `--filename NAME`, `--quality low|medium|high`, `--format png|jpeg|webp`, `--fast`, `--mini...

Details

Author
tdimino
Repository
tdimino/claude-code-minoan
Created
7 months ago
Last Updated
yesterday
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

image-generation

Generate and edit images via OpenAI's gpt-image-2 (ChatGPT Images 2.0) API. Use when the user asks to "generate an image", "create an image", "make a picture of X", "draw X", "edit this image", "remove the background from this image", "extend this image", "regenerate this image with Y", or invokes /image-generation. Outputs PNG/JPEG/WebP files to disk. Requires OPENAI_API_KEY in the environment.

2 Updated 2 days ago
magnusrodseth
AI & Automation Featured

gpt-image-skill

Generate or edit images using OpenAI GPT Image API (gpt-image-2, gpt-image-1, etc). Use ONLY when the user explicitly names OpenAI or GPT as the provider: "gpt image", "openai image", "generate image with openai", "用 openai 画图", "用 GPT 生成图片". For generic image requests without a provider, use nanobanana-skill instead. Do NOT use for diagrams (架构图/流程图) — draw those with Mermaid or code.

1,631 Updated 1 weeks ago
feiskyer
AI & Automation Listed

gpt-image

Execute image generation, editing, and chroma-key transparent-background workflows with GPT Image 2 / gpt-image-2 through the bundled scripts. Use when GPT Image is the selected backend and a supplied prompt or edit instruction must be executed for text-to-image generation, reference-image editing, multi-reference editing, masked inpainting, or chroma-key background removal. Treat the supplied prompt as authoritative; this skill does not search prompt galleries, choose art direction, or perform general prompt planning.

60 Updated today
Yuki001