Generation Commands
| Command | What it does |
/seo image-gen og <description> | Generate a 1200x630 OG/social preview image |
/seo image-gen hero <description> | Generate a 16:9 blog hero image |
/seo image-gen product <description> | Generate square or 4:3 product photography |
/seo image-gen infographic <description> | Generate a vertical infographic from data points |
/seo image-gen custom <description> --aspect 16:9 | Custom aspect ratio with full Creative Director pipeline |
/seo image-gen batch <manifest.json> | Generate every image in a JSON manifest in one run |
Installation
The Image Gen extension is not bundled with Claude SEO core. Install it explicitly when you want image generation wired into the skill catalog.
./extensions/banana/install.sh
The installer wires the nanobanana MCP server, prompts for a Google AI Studio API key, and writes the extension into your Claude Code configuration. The extension also works with the standalone /banana skill from the banana-claude project if you want image generation outside the SEO pack.
Manifest Format
Batch generation takes a JSON manifest. Each entry specifies a format and a description; sizes and prompts are applied automatically.
[
{"format": "og", "description": "dark theme tech minimal", "out": "blog/post-1-og.webp"},
{"format": "hero", "description": "developer at terminal", "out": "blog/post-1-hero.webp"},
{"format": "product", "description": "matte black headphones", "out": "products/sku-101.webp"}
]