gemini-image-gen

jezweb/claude-skills · updated Apr 8, 2026

MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.

$npx skills add https://github.com/jezweb/claude-skills --skill gemini-image-gen
0 commentsdiscussion
summary

Generate contextual images for web projects using the Gemini API. Produces hero backgrounds, OG cards, placeholder photos, textures, and style-matched variants.

skill.md

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:

  1. Read GEMINI_API_KEY from environment
  2. POST to https://generativelanguage.googleapis.com/v1beta/models/{model}:generateContent
  3. Include "responseModalities": ["TEXT", "IMAGE"] in generationConfig
  4. Parse the response: extract inlineData.data (base64) from candidate parts
  5. Decode base64 and save as PNG
  6. 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
how to use gemini-image-gen

How to use gemini-image-gen on Cursor

AI-first code editor with Composer

1

Prerequisites

Before installing skills in Cursor, ensure your development environment meets these requirements:

  • Cursor installed and configured on your development machine
  • Node.js version 16.0+ with npm package manager (verify with node --version)
  • Active project directory or workspace where you want to add gemini-image-gen
2

Execute installation command

Execute the skills CLI command in your project's root directory to begin installation:

$npx skills add https://github.com/jezweb/claude-skills --skill gemini-image-gen

The skills CLI fetches gemini-image-gen from GitHub repository jezweb/claude-skills and configures it for Cursor.

3

Select Cursor when prompted

The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:

◆ Which agents do you want to install to?
│ ── Universal (.agents/skills) ── always included ────
│ • Amp
│ • Antigravity
│ • Cline
│ • Codex
│ ●Cursor(selected)
│ • Cursor
│ • Windsurf
4

Verify installation

Confirm successful installation by checking the skill directory location:

.cursor/skills/gemini-image-gen

Reload or restart Cursor to activate gemini-image-gen. Access the skill through slash commands (e.g., /gemini-image-gen) or your agent's skill management interface.

Security & Verification Notice

We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.

Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.

List & Monetize Your Skill

Submit your Claude Code skill and start earning

GET_STARTED →

Use Cases

User Story & Requirements Generation

Create detailed user stories, acceptance criteria, and feature specs

Example

Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios

Reduce spec writing time by 50%, ensure comprehensive coverage

Competitive Analysis

Research competitors, compare features, identify gaps

Example

Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities

Complete competitive research in 2 hours instead of 2 days

Roadmap Prioritization

Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs

Example

Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale

Make data-driven prioritization decisions faster

Stakeholder Communication

Draft PRDs, status updates, and stakeholder presentations

Example

Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement

Save 3-5 hours/week on communication overhead

Implementation Guide

Prerequisites

  • Claude Desktop or compatible AI client
  • Access to product documentation and roadmap tools (Jira, Notion, etc.)
  • Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
  • Stakeholder contact information and communication channels

Time Estimate

30-60 minutes to see productivity improvements

Installation Steps

  1. 1.Install product management skill
  2. 2.Start with user story generation for known feature
  3. 3.Progress to competitive analysis: research 2-3 competitors
  4. 4.Use for roadmap prioritization: apply RICE/ICE scoring
  5. 5.Draft stakeholder communications and refine based on feedback
  6. 6.Build template library for recurring PM tasks
  7. 7.Share effective prompts with product team

Common Pitfalls

  • Not validating competitive research—verify facts before sharing
  • Accepting user stories without involving engineering team
  • Over-relying on frameworks without qualitative judgment
  • Not customizing outputs to company culture and communication style
  • Skipping stakeholder validation of generated requirements

Best Practices

✓ Do

  • +Validate research and competitive analysis with real data
  • +Collaborate with engineering when generating technical requirements
  • +Customize frameworks and templates to your company context
  • +Use skill for first drafts, refine with stakeholder input
  • +Document successful prompt patterns for PM tasks
  • +Combine AI efficiency with human judgment and intuition

✗ Don't

  • Don't publish competitive analysis without fact-checking
  • Don't finalize user stories without engineering review
  • Don't make prioritization decisions solely on AI scoring
  • Don't skip customer validation of generated requirements
  • Don't ignore company-specific context and culture

💡 Pro Tips

  • Provide context: company goals, constraints, customer feedback
  • Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
  • Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
  • Use skill for 70% generation + 30% customization to company needs

When to Use This

✓ Use When

Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.

✗ Avoid When

Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.

Learning Path

  1. 1Basic: user stories, feature specs, status updates
  2. 2Intermediate: competitive analysis, prioritization frameworks, PRDs
  3. 3Advanced: product strategy, go-to-market planning, OKR setting
  4. 4Expert: product vision, market positioning, business model innovation

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.646 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

1 / 5