nano-image-generator — for Claude Code nano-image-generator, marketplace, community, for Claude Code, ide skills, ## Script Usage, Generator, Generate, images, Banana

v1.0.0

About this Skill

Perfect for Creative Agents needing advanced image generation capabilities with Nano Banana Pro Generate images using Nano Banana Pro (Gemini 3 Pro Preview). Use when creating app icons, logos, UI graphics, marketing banners, social media images, illustrations, diagrams, or any visual assets. Su

Features

Nano Image Generator
python scripts/generate image.py "A friendly robot mascot waving" --output ./mascot.png
With style reference (keep same visual style)
python scripts/generate image.py "Same style, new content" --ref ./reference.jpg --output ./new.png
Generate images using Nano Banana Pro (Gemini 3 Pro Preview)

# Core Topics

aiskillstore aiskillstore
[0]
[0]
Updated: 2/20/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reviewed Landing Page Review Score: 10/11

Killer-Skills keeps this page indexable because it adds recommendation, limitations, and review signals beyond the upstream repository text.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review Locale and body language aligned
Review Score
10/11
Quality Score
60
Canonical Locale
en
Detected Body Locale
en

Perfect for Creative Agents needing advanced image generation capabilities with Nano Banana Pro Generate images using Nano Banana Pro (Gemini 3 Pro Preview). Use when creating app icons, logos, UI graphics, marketing banners, social media images, illustrations, diagrams, or any visual assets. Su

Core Value

Empowers agents to generate high-quality visual assets using Nano Banana Pro, supporting reference images for style transfer and character consistency, and outputting images in various formats, leveraging Python scripts for seamless integration

Ideal Agent Persona

Perfect for Creative Agents needing advanced image generation capabilities with Nano Banana Pro

Capabilities Granted for nano-image-generator

Generating consistent character designs with reference images
Creating visual assets with style transfer capabilities
Automating image generation for various design needs using Python scripts

! Prerequisites & Limits

  • Requires Nano Banana Pro (Gemini 3 Pro Preview)
  • Python environment needed for script execution
  • Dependent on reference image quality for style transfer

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Curated Collection Review

Reviewed In Curated Collections

This section shows how Killer-Skills includes, reviews, and maintains this skill inside curated collections, so you can see where it fits in practical selection paths instead of relying only on the upstream README.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is nano-image-generator?

Perfect for Creative Agents needing advanced image generation capabilities with Nano Banana Pro Generate images using Nano Banana Pro (Gemini 3 Pro Preview). Use when creating app icons, logos, UI graphics, marketing banners, social media images, illustrations, diagrams, or any visual assets. Su

How do I install nano-image-generator?

Run the command: npx killer-skills add aiskillstore/marketplace/nano-image-generator. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for nano-image-generator?

Key use cases include: Generating consistent character designs with reference images, Creating visual assets with style transfer capabilities, Automating image generation for various design needs using Python scripts.

Which IDEs are compatible with nano-image-generator?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for nano-image-generator?

Requires Nano Banana Pro (Gemini 3 Pro Preview). Python environment needed for script execution. Dependent on reference image quality for style transfer.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add aiskillstore/marketplace/nano-image-generator. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use nano-image-generator immediately in the current project.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

nano-image-generator

Install nano-image-generator, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Nano Image Generator

Generate images using Nano Banana Pro (Gemini 3 Pro Preview) for any visual asset needs. Supports reference images for style transfer and character consistency.

Quick Start

bash
1# Basic generation 2python scripts/generate_image.py "A friendly robot mascot waving" --output ./mascot.png 3 4# With style reference (keep same visual style) 5python scripts/generate_image.py "Same style, new content" --ref ./reference.jpg --output ./new.png

Script Usage

bash
1python scripts/generate_image.py <prompt> --output <path> [options]

Required:

  • prompt - Image description
  • --output, -o - Output file path

Options:

  • --aspect, -a - Aspect ratio (default: 1:1)
    • Square: 1:1
    • Portrait: 2:3, 3:4, 4:5, 9:16
    • Landscape: 3:2, 4:3, 5:4, 16:9, 21:9
  • --size, -s - Resolution: 1K, 2K (default), 4K
  • --ref, -r - Reference image (can use multiple times, max 14)

Reference Images

Gemini supports up to 14 reference images for:

Style Transfer

Keep the visual style (colors, textures, mood) from a reference:

bash
1python scripts/generate_image.py "New scene with mountains, same visual style as reference" \ 2 --ref ./style-reference.jpg --output ./styled-mountains.png

Character Consistency

Maintain character appearance across multiple images:

bash
1python scripts/generate_image.py "Same character now in a forest setting" \ 2 --ref ./character.png --output ./character-forest.png

Multi-Image Fusion

Combine elements from multiple references:

bash
1python scripts/generate_image.py "Combine the style of first image with subject of second" \ 2 --ref ./style.png --ref ./subject.png --output ./combined.png

Serial Image Generation (Batch Workflow)

For generating a series with consistent style:

  1. Generate first image
  2. Use first image as --ref for subsequent images
  3. Each new image inherits the established style
bash
1# Generate cover 2python scripts/generate_image.py "Tech knowledge card cover" -o ./01-cover.png 3 4# Generate subsequent cards with style reference 5python scripts/generate_image.py "Card 2 content, same style" --ref ./01-cover.png -o ./02-card.png 6python scripts/generate_image.py "Card 3 content, same style" --ref ./01-cover.png -o ./03-card.png

Workflow

  1. Determine output location - Place images where contextually appropriate:

    • App icons → ./assets/icons/
    • Marketing → ./marketing/
    • UI elements → ./src/assets/
    • General → ./generated/
  2. Craft effective prompts - Be specific and descriptive:

    • Include style: "flat design", "3D rendered", "watercolor", "minimalist"
    • Include context: "for a mobile app", "website hero image"
    • Include details: colors, mood, composition
    • For references: mention "same style as reference" or "keep the visual style"
  3. Choose appropriate settings:

    • Icons/logos → --aspect 1:1
    • Banners/headers → --aspect 16:9 or 21:9
    • Mobile screens → --aspect 9:16
    • Xiaohongshu cards → --aspect 3:4
    • Photos → --aspect 3:2 or 4:3

Examples

App icon:

bash
1python scripts/generate_image.py "Minimalist flat design app icon of a lightning bolt, purple gradient background, modern iOS style" \ 2 --output ./assets/app-icon.png --aspect 1:1

Marketing banner:

bash
1python scripts/generate_image.py "Professional website hero banner for a productivity app, abstract geometric shapes, blue and white color scheme" \ 2 --output ./public/images/hero-banner.png --aspect 16:9

Xiaohongshu knowledge card:

bash
1python scripts/generate_image.py "Tech knowledge card, dark blue purple gradient, neon cyan accents, code block style, Chinese text '标题'" \ 2 --output ./xiaohongshu/card.png --aspect 3:4

Style transfer:

bash
1python scripts/generate_image.py "Transform this photo into watercolor painting style" \ 2 --ref ./photo.jpg --output ./watercolor.png

Character in new scene:

bash
1python scripts/generate_image.py "Same character from reference, now sitting in a cafe, warm lighting" \ 2 --ref ./character.png --output ./character-cafe.png --aspect 3:2

Prompt Tips

  • Be specific - "A red apple on a wooden table" vs "an apple"
  • Include style - "in the style of pixel art" or "photorealistic"
  • Mention purpose - "for a children's book" affects the output style
  • Describe composition - "centered", "rule of thirds", "close-up"
  • Specify colors - Explicit color palettes yield better results
  • Reference prompts - Use "same style as reference", "keep the visual aesthetic", "match the color palette"
  • Avoid - Don't ask for complex text in images (use overlays instead)

Limitations

  • Maximum 14 reference images per request
  • Text rendering may be imperfect (better to overlay text separately)
  • Very specific brand logos may not reproduce exactly

Related Skills

Looking for an alternative to nano-image-generator or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

openclaw-release-maintainer is an AI agent skill for openclaw release maintainer.

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

flags is an AI agent skill for use this skill when adding or changing framework feature flags in next.js internals.

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

pr-review is an AI agent skill for pytorch pr review skill.

98.6k
0
Developer