SEO Image Gen: AI Image Generation for SEO Assets (Extension)

AI image generation for SEO assets: OG/social preview images, blog hero images, schema images, product photography, infographics.

How to use it

  1. Hit Copy the whole skill.
  2. Claude: ⋯ → Download .md, then Customize → Skills → Add → Upload skill.
    ChatGPT: make a Project and paste it into Instructions.
    Neither? Paste it at the top of a new chat — it works for that chat.
  3. Describe your job in plain words. The AI follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit AgriciDaniel/claude-seo/skills/seo-image-gen#main ~/.claude/skills/seo-image-gen-2

For one project only, change the path to .claude/skills/seo-image-gen-2.

Not working?
  • Check which app you pasted it into — the steps above name the right one.
  • Some skills need the paid tier of Claude or ChatGPT.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Show the full text174 lines
seo-image-gen-2/SKILL.md174 lines8.0 KBpushed 11d agoRawView on GitHub

SEO Image Gen: AI Image Generation for SEO Assets (Extension)

Generate production-ready images for SEO use cases using Gemini's image generation via the banana Creative Director pipeline. Maps SEO needs to optimized domain modes, aspect ratios, and resolution defaults.

Architecture Note

This extension is built on Claude Banana, the standalone AI image generation skill for Claude Code.

This skill has two components with distinct roles:

  • SKILL.md (this file): Handles interactive /seo image-gen commands for generating images
  • Agent (agents/seo-image-gen.md): Audit-only analyst spawned during /seo audit to assess existing OG/social images and produce a generation plan (never auto-generates)

Prerequisites

This skill requires the banana extension to be installed:

./extensions/banana/install.sh

Check availability: Before using any image generation tool, verify the MCP server is connected by checking if gemini_generate_image or set_aspect_ratio tools are available. If tools are not available, inform the user the extension is not installed and provide install instructions.

Quick Reference

Command What it does
/seo image-gen og <description> Generate OG/social preview image (1200x630 feel)
/seo image-gen hero <description> Blog hero image (widescreen, dramatic)
/seo image-gen product <description> Product photography (clean, white BG)
/seo image-gen infographic <description> Infographic visual (vertical, data-heavy)
/seo image-gen custom <description> Custom image with full Creative Director pipeline
/seo image-gen batch <description> [N] Generate N variations (default: 3)

SEO Image Use Cases

Each use case maps to pre-configured banana parameters:

Use Case Aspect Ratio Resolution Domain Mode Notes
OG/Social Preview 16:9 1K Product or UI/Web Clean, professional, text-friendly
Blog Hero 16:9 2K Cinema or Editorial Dramatic, atmospheric, editorial quality
Schema Image 4:3 1K Product Clean, descriptive, schema ImageObject
Social Square 1:1 1K UI/Web Platform-optimized square
Product Photo 4:3 2K Product White background, studio lighting
Infographic 2:3 4K Infographic Data-heavy, vertical layout
Favicon/Icon 1:1 512 Logo Minimal, scalable, recognizable
Pinterest Pin 2:3 2K Editorial Tall vertical card

Generation Pipeline

For every generation request:

  1. Identify use case from command or context (og, hero, product, etc.)
  2. Apply SEO defaults from the use cases table above
  3. Set aspect ratio via set_aspect_ratio MCP tool
  4. Construct Reasoning Brief using the banana Creative Director pipeline:
    • Load references/prompt-engineering.md for the 6-component system
    • Apply domain mode emphasis (Subject 30%, Style 25%, Context 15%, etc.)
    • Be SPECIFIC and VISCERAL: describe what the camera sees
  5. Generate via gemini_generate_image MCP tool
  6. Post-generation SEO checklist (see below)

Check for Presets

If the user mentions a brand or has SEO presets configured:

# Use the installed Banana MCP/tool configuration to list presets.

Load matching preset and apply as defaults. Also check references/seo-image-presets.md for SEO-specific preset templates.

Post-Generation SEO Checklist

After every successful generation, guide the user on:

  1. Alt text:Write descriptive, keyword-rich alt text for the generated image
  2. File naming:Rename to SEO-friendly format: keyword-description-widthxheight.webp
  3. WebP conversion:Convert to WebP for optimal page speed:
    magick output.png -quality 85 output.webp
    
  4. File size:Target under 200KB for hero images, under 100KB for thumbnails
  5. Schema markup:Suggest ImageObject schema for the generated image:
    {
      "@type": "ImageObject",
      "url": "https://example.com/images/keyword-description.webp",
      "width": 1200,
      "height": 630,
      "caption": "Descriptive caption with target keyword"
    }
    
  6. OG meta tags:For social preview images, remind about:
    <meta property="og:image" content="https://example.com/images/og-image.webp" />
    <meta property="og:image:width" content="1200" />
    <meta property="og:image:height" content="630" />
    <meta property="og:image:alt" content="Descriptive alt text" />
    

Cost Awareness

Image generation costs money. Be transparent:

  • Show estimated cost before generating (especially for batch)
  • Log every generation in the installed Banana MCP/tool ledger when available
  • Use the installed Banana MCP/tool usage summary if user asks about usage

Approximate costs:

  • Verify current pricing in the installed MCP/tool configuration before quoting

Model Routing

Scenario Model Why
OG images, social previews Installed MCP/tool default @ 1K Fast, cost-effective
Hero images, product photos Installed MCP/tool quality model @ 2K Quality + detail
Infographics with text Installed MCP/tool text-capable model @ 2K, thinking: high if supported Better text rendering
Quick drafts Installed MCP/tool draft model @ 512 Rapid iteration

Error Handling

Error Resolution
MCP not configured Run ./extensions/banana/install.sh
API key invalid New key at https://aistudio.google.com/apikey
Rate limited (429) Wait 60s, retry. Free tier: ~10 RPM / ~500 RPD
IMAGE_SAFETY Rephrase prompt - see references/prompt-engineering.md Safety section
MCP unavailable Configure MCP with ./extensions/banana/install.sh; claude-seo does not vendor a local generation fallback script
Extension not installed Show install instructions: ./extensions/banana/install.sh

Cross-Skill Integration

  • seo-images (analysis) feeds into seo-image-gen (generation): audit results from /seo images identify missing or low-quality images; use those findings to drive /seo image-gen commands
  • seo-audit spawns the seo-image-gen agent (not this skill) to analyze OG/social images across the site and produce a prioritized generation plan
  • seo-schema can consume generated images: after generation, suggest ImageObject schema markup pointing to the new assets

Reference Documentation

Load on-demand. Do NOT load all at startup:

  • references/prompt-engineering.md:6-component system, domain modes, templates
  • references/gemini-models.md:Model specs, rate limits, capabilities
  • references/mcp-tools.md:MCP tool parameters and responses
  • references/post-processing.md:ImageMagick/FFmpeg pipeline recipes
  • references/cost-tracking.md:Pricing, usage tracking
  • references/presets.md:Brand preset management
  • references/seo-image-presets.md:SEO-specific preset templates

Response Format

After generating, always provide:

  1. Image path:where it was saved
  2. Crafted prompt:show what was sent to the API (educational)
  3. Settings:model, aspect ratio, resolution
  4. SEO checklist:alt text suggestion, file naming, WebP conversion
  5. Schema snippet:ImageObject or og:image markup if applicable
1---
2name: seo-image-gen
3description: "AI image generation for SEO assets: OG/social preview images, blog hero images, schema images, product photography, infographics. Powered by Gemini via nanobanana-mcp. Requires banana extension installed. Use when user says \"generate image\", \"OG image\", \"social preview\", \"hero image\", \"blog image\", \"product photo\", \"infographic\", \"seo image\", \"create visual\", \"image-gen\", \"favicon\", \"schema image\", \"pinterest pin\", \"generate visual\", \"banner\", or \"thumbnail\"."
4argument-hint: "[og|hero|product|infographic|custom|batch] <description>"
5user-invocable: true
6license: MIT
7compatibility: "Requires nanobanana MCP server"
8metadata:
9 author: AgriciDaniel
10 version: "2.3.1"
11 category: seo
12---
13 
14# SEO Image Gen: AI Image Generation for SEO Assets (Extension)
15 
16Generate production-ready images for SEO use cases using Gemini's image generation
17via the banana Creative Director pipeline. Maps SEO needs to optimized domain modes,
18aspect ratios, and resolution defaults.
19 
20## Architecture Note
21 
22This extension is built on [Claude Banana](https://github.com/AgriciDaniel/banana-claude),
23the standalone AI image generation skill for Claude Code.
24 
25This skill has two components with distinct roles:
26- **SKILL.md** (this file): Handles interactive `/seo image-gen` commands for generating images
27- **Agent** (`agents/seo-image-gen.md`): Audit-only analyst spawned during `/seo audit` to assess existing OG/social images and produce a generation plan (never auto-generates)
28 
29## Prerequisites
30 
31This skill requires the banana extension to be installed:
32```bash
33./extensions/banana/install.sh
34```
35 
36**Check availability:** Before using any image generation tool, verify the MCP server
37is connected by checking if `gemini_generate_image` or `set_aspect_ratio` tools are
38available. If tools are not available, inform the user the extension is not installed
39and provide install instructions.
40 
41## Quick Reference
42 
43| Command | What it does |
44|---------|-------------|
45| `/seo image-gen og <description>` | Generate OG/social preview image (1200x630 feel) |
46| `/seo image-gen hero <description>` | Blog hero image (widescreen, dramatic) |
47| `/seo image-gen product <description>` | Product photography (clean, white BG) |
48| `/seo image-gen infographic <description>` | Infographic visual (vertical, data-heavy) |
49| `/seo image-gen custom <description>` | Custom image with full Creative Director pipeline |
50| `/seo image-gen batch <description> [N]` | Generate N variations (default: 3) |
51 
52## SEO Image Use Cases
53 
54Each use case maps to pre-configured banana parameters:
55 
56| Use Case | Aspect Ratio | Resolution | Domain Mode | Notes |
57|----------|-------------|------------|-------------|-------|
58| **OG/Social Preview** | `16:9` | `1K` | Product or UI/Web | Clean, professional, text-friendly |
59| **Blog Hero** | `16:9` | `2K` | Cinema or Editorial | Dramatic, atmospheric, editorial quality |
60| **Schema Image** | `4:3` | `1K` | Product | Clean, descriptive, schema ImageObject |
61| **Social Square** | `1:1` | `1K` | UI/Web | Platform-optimized square |
62| **Product Photo** | `4:3` | `2K` | Product | White background, studio lighting |
63| **Infographic** | `2:3` | `4K` | Infographic | Data-heavy, vertical layout |
64| **Favicon/Icon** | `1:1` | `512` | Logo | Minimal, scalable, recognizable |
65| **Pinterest Pin** | `2:3` | `2K` | Editorial | Tall vertical card |
66 
67## Generation Pipeline
68 
69For every generation request:
70 
711. **Identify use case** from command or context (og, hero, product, etc.)
722. **Apply SEO defaults** from the use cases table above
733. **Set aspect ratio** via `set_aspect_ratio` MCP tool
744. **Construct Reasoning Brief** using the banana Creative Director pipeline:
75 - Load `references/prompt-engineering.md` for the 6-component system
76 - Apply domain mode emphasis (Subject 30%, Style 25%, Context 15%, etc.)
77 - Be SPECIFIC and VISCERAL: describe what the camera sees
785. **Generate** via `gemini_generate_image` MCP tool
796. **Post-generation SEO checklist** (see below)
80 
81### Check for Presets
82 
83If the user mentions a brand or has SEO presets configured:
84```bash
85# Use the installed Banana MCP/tool configuration to list presets.
86```
87Load matching preset and apply as defaults. Also check `references/seo-image-presets.md`
88for SEO-specific preset templates.
89 
90## Post-Generation SEO Checklist
91 
92After every successful generation, guide the user on:
93 
941. **Alt text**:Write descriptive, keyword-rich alt text for the generated image
952. **File naming**:Rename to SEO-friendly format: `keyword-description-widthxheight.webp`
963. **WebP conversion**:Convert to WebP for optimal page speed:
97 ```bash
98 magick output.png -quality 85 output.webp
99 ```
1004. **File size**:Target under 200KB for hero images, under 100KB for thumbnails
1015. **Schema markup**:Suggest `ImageObject` schema for the generated image:
102 ```json
103 {
104 "@type": "ImageObject",
105 "url": "https://example.com/images/keyword-description.webp",
106 "width": 1200,
107 "height": 630,
108 "caption": "Descriptive caption with target keyword"
109 }
110 ```
1116. **OG meta tags**:For social preview images, remind about:
112 ```html
113 <meta property="og:image" content="https://example.com/images/og-image.webp" />
114 <meta property="og:image:width" content="1200" />
115 <meta property="og:image:height" content="630" />
116 <meta property="og:image:alt" content="Descriptive alt text" />
117 ```
118 
119## Cost Awareness
120 
121Image generation costs money. Be transparent:
122- Show estimated cost before generating (especially for batch)
123- Log every generation in the installed Banana MCP/tool ledger when available
124- Use the installed Banana MCP/tool usage summary if user asks about usage
125 
126Approximate costs:
127- Verify current pricing in the installed MCP/tool configuration before quoting
128 
129## Model Routing
130 
131| Scenario | Model | Why |
132|----------|-------|-----|
133| OG images, social previews | Installed MCP/tool default @ 1K | Fast, cost-effective |
134| Hero images, product photos | Installed MCP/tool quality model @ 2K | Quality + detail |
135| Infographics with text | Installed MCP/tool text-capable model @ 2K, thinking: high if supported | Better text rendering |
136| Quick drafts | Installed MCP/tool draft model @ 512 | Rapid iteration |
137 
138## Error Handling
139 
140| Error | Resolution |
141|-------|-----------|
142| MCP not configured | Run `./extensions/banana/install.sh` |
143| API key invalid | New key at https://aistudio.google.com/apikey |
144| Rate limited (429) | Wait 60s, retry. Free tier: ~10 RPM / ~500 RPD |
145| `IMAGE_SAFETY` | Rephrase prompt - see `references/prompt-engineering.md` Safety section |
146| MCP unavailable | Configure MCP with `./extensions/banana/install.sh`; claude-seo does not vendor a local generation fallback script |
147| Extension not installed | Show install instructions: `./extensions/banana/install.sh` |
148 
149## Cross-Skill Integration
150 
151- **seo-images** (analysis) feeds into **seo-image-gen** (generation): audit results from `/seo images` identify missing or low-quality images; use those findings to drive `/seo image-gen` commands
152- **seo-audit** spawns the seo-image-gen **agent** (not this skill) to analyze OG/social images across the site and produce a prioritized generation plan
153- **seo-schema** can consume generated images: after generation, suggest `ImageObject` schema markup pointing to the new assets
154 
155## Reference Documentation
156 
157Load on-demand. Do NOT load all at startup:
158- `references/prompt-engineering.md`:6-component system, domain modes, templates
159- `references/gemini-models.md`:Model specs, rate limits, capabilities
160- `references/mcp-tools.md`:MCP tool parameters and responses
161- `references/post-processing.md`:ImageMagick/FFmpeg pipeline recipes
162- `references/cost-tracking.md`:Pricing, usage tracking
163- `references/presets.md`:Brand preset management
164- `references/seo-image-presets.md`:SEO-specific preset templates
165 
166## Response Format
167 
168After generating, always provide:
1691. **Image path**:where it was saved
1702. **Crafted prompt**:show what was sent to the API (educational)
1713. **Settings**:model, aspect ratio, resolution
1724. **SEO checklist**:alt text suggestion, file naming, WebP conversion
1735. **Schema snippet**:ImageObject or og:image markup if applicable
174 

Discussion

Alternatives

Also in Illustration & art