nano-image-generatorlisted
Install: claude install-skill aiskillstore/marketplace
# 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
# Basic generation
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
```
## Script Usage
```bash
python 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
python scripts/generate_image.py "New scene with mountains, same visual style as reference" \
--ref ./style-reference.jpg --output ./styled-mountains.png
```
### Character Consistency
Maintain character appearance across multiple images:
```bash
python scripts/generate_image.py "Same character now in a forest setting" \
--ref ./character.png --output ./character-forest.png
```