This skill should be used when the user asks to "generate one image", "make a single image", "create a quick image", "generate an image quickly", "just need one image", or otherwise needs a single-shot image generation without session setup. Covers the minimal generate_image flow and when to skip the session machinery.
How this skill is triggered — by the user, by Claude, or both
Slash command
/gemini-creative-plugin:gemini-quickThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generate a single image fast, without session overhead. Best for one-off images, prototypes, or exploration.
Generate a single image fast, without session overhead. Best for one-off images, prototypes, or exploration.
gemini-sprite-series skill insteadgemini-ui-mockups skill insteadcontinue_editing after the first generationAsk the user what they want to generate (if not already described).
Check API status with get_configuration_status. If not configured, guide through setup:
GEMINI_API_KEY env variable (recommended), orconfigure_gemini_token with their key from AI StudioChoose parameters based on the request:
aspectRatio: 1:1 (square/social), 16:9 (wide/presentation), 9:16 (mobile/story), 3:2 (photo), 21:9 (cinematic)model: gemini-3.1-flash-image-preview (default, best quality/speed balance)resolution: 1K default, 2K for sharper detail, 4K for maximum qualityresponseMode: image_only (default/fast) or text_and_image if user wants descriptionGenerate with generate_image. Write a descriptive prompt:
For a one-off anchored to an EXISTING image (same character in a new scene, style-matched companion piece), pass referenceImages: ["/path/to/ref.png"] — no session needed. All ref paths must be valid; the call fails rather than generating unanchored. For a multi-image consistent series, switch to sessions (see gemini-workflows).
Visually verify with Read tool. If the result needs tweaking, use continue_editing with a correction prompt.
Report back with the image path and any notable details about what was generated.
| Vague ❌ | Descriptive ✅ |
|---|---|
| "a cat" | "A ginger tabby cat sitting in a sunlit window, watercolor illustration, warm tones" |
| "a logo" | "Minimalist tech startup logo, letter 'G', geometric, dark blue on white, vector style" |
| "space scene" | "Deep space nebula, purple and gold clouds, distant stars, photorealistic, cinematic lighting" |
[Subject] + [Composition] + [Action/State] + [Location] + [Style] + [Technical specs]
Example: 2D pixel art wizard character [subject], centered, front-facing [composition], casting a fireball [action], plain white background [location], clean outlines, limited 16-color palette [style], 32x32 pixel grid [technical]
continue_editing("change X to Y") — targeted correctiongenerate_image — editing rarely fixes fundamental layoutcontinue_editingcontinue_editingSee the gemini-prompts skill for domain-specific prompt structures (sprites, UI, icons, characters).
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub 2901were/gemini-creative-plugin --plugin gemini-creative-plugin