gemini-image-gen▌
jezweb/claude-skills · updated Apr 8, 2026
Generate contextual images for web projects using the Gemini API. Produces hero backgrounds, OG cards, placeholder photos, textures, and style-matched variants.
Gemini Image Generator
Generate contextual images for web projects using the Gemini API. Produces hero backgrounds, OG cards, placeholder photos, textures, and style-matched variants.
Setup
API Key: Set GEMINI_API_KEY as an environment variable. Get a key from https://aistudio.google.com/apikey if you don't have one.
export GEMINI_API_KEY="your-key-here"
Workflow
Step 1: Understand What's Needed
Gather from the user or project context:
- What: hero background, product photo, texture, OG image, placeholder
- Style: warm/cool/minimal/luxurious/bold — check project's colour palette (input.css, tailwind config)
- Dimensions: hero (1920x1080), OG (1200x630), square (1024x1024), custom
- Count: single image or multiple variants to choose from
Step 2: Build the Prompt
Use concrete photography parameters, not abstract adjectives. Read references/prompting-guide.md for the full framework.
Quick rules:
- Narrate like directing a photographer
- Use camera specs: "85mm f/1.8", "wide angle 24mm"
- Use colour anchors from the project palette: "warm terracotta (#C66A52) and cream (#F5F0EB) tones"
- Use lighting descriptions: "golden-hour light from the left, 4500K"
- Always end with: "No text, no watermarks, no logos, no hands"
Step 3: Generate
Generate a Python script (no dependencies beyond stdlib) that calls the Gemini API. The script should:
- Read
GEMINI_API_KEYfrom environment - POST to
https://generativelanguage.googleapis.com/v1beta/models/{model}:generateContent - Include
"responseModalities": ["TEXT", "IMAGE"]in generationConfig - Parse the response: extract
inlineData.data(base64) from candidate parts - Decode base64 and save as PNG
- Support multiple variants (generate N times, save as
name-1.png,name-2.png)
For style matching with a reference image, include the reference as an inlineData part before the text prompt, and use temperature 0.7 (instead of 1.0).
See references/api-pattern.md for the full implementation pattern including error handling and response parsing.
Critical: Never pass prompts via curl + bash arguments — shell escaping breaks on apostrophes. Always use Python's json.dumps() or write the prompt to a file first.
Step 4: Post-Process (Optional)
Use the image-processing skill for resizing, format conversion, or optimisation.
Step 5: Present to User
Show the generated images for review. Read the image files to display them inline if possible, otherwise describe what was generated and let the user open them.
Presets
Starting prompts — enhance with project-specific context (colours, mood, subject):
| Preset | Base Prompt |
|---|---|
hero-background |
"Wide atmospheric background, soft-focus, [colour tones], [mood], landscape 1920x1080" |
og-image |
"Clean branded card background, [brand colours], subtle gradient, 1200x630" |
placeholder-photo |
"Professional stock-style photo of [subject], natural lighting, warm tones" |
texture-pattern |
"Subtle repeating texture, [material], seamless tile, muted [colour]" |
product-shot |
"Product photography, [item] on [surface], soft studio lighting, clean background" |
Model Selection
| Use case | Model | Cost |
|---|---|---|
| Drafts, quick placeholders | gemini-2.5-flash-image |
Free (~500/day) |
| Final client assets | gemini-3-pro-image-preview |
~$0.04/image |
| Style-matched variants | gemini-3-pro-image-preview + reference image |
~$0.04/image |
Verify current model IDs if errors occur — they change frequently.
Reference Files
| When | Read |
|---|---|
| Building effective prompts | references/prompting-guide.md |
| API implementation details | references/api-pattern.md |
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.6★★★★★46 reviews- ★★★★★Aanya Huang· Dec 24, 2024
We added gemini-image-gen from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Ren Jain· Dec 24, 2024
Useful defaults in gemini-image-gen — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Jin Gupta· Nov 27, 2024
gemini-image-gen fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Naina Flores· Nov 15, 2024
gemini-image-gen has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Neel Shah· Nov 11, 2024
I recommend gemini-image-gen for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Nikhil Martin· Oct 18, 2024
We added gemini-image-gen from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Neel Sethi· Oct 6, 2024
Solid pick for teams standardizing on skills: gemini-image-gen is focused, and the summary matches what you get after install.
- ★★★★★Sofia Okafor· Oct 2, 2024
Useful defaults in gemini-image-gen — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Kabir Farah· Sep 25, 2024
We added gemini-image-gen from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Mateo Khanna· Sep 21, 2024
Registry listing for gemini-image-gen matched our evaluation — installs cleanly and behaves as described in the markdown.
showing 1-10 of 46