nano-banana-pro
Nano Banana Pro harnesses Gemini 3 Pro Image to create and modify images through command-line scripts. Generate new images from text descriptions, edit existing images with instructions, or combine multiple images into a single composition—all configurable by resolution and output filename.
Nano Banana Pro generates images from text prompts using Gemini 3 Pro Image.
AI-generated summary based on this skill's SKILL.md
Install
malue-ai/dazee-small/nano-banana-pro · repository language: Python
git clone https://github.com/malue-ai/dazee-small
cp -r dazee-small/skills/library/nano-banana-pro ~/.claude/skills/nano-banana-pronpx skillfed install malue-ai/dazee-small/nano-banana-proFrequently asked questions
AI-generated answers based on this skill's SKILL.md and metadata
How do I generate an image with Gemini 3 Pro using nano-banana-pro?
Nano Banana Pro leverages Gemini 3 Pro Image to generate images from text descriptions via command-line scripts. Provide a text prompt describing your desired image, specify the output resolution (1K, 2K, or 4K), and nano-banana-pro will synthesize the artwork and save it to your chosen filename.
Can nano-banana-pro edit or modify existing images with AI?
Yes, nano-banana-pro supports AI-powered image editing. You can provide instructions to modify existing images, allowing you to refine, adjust, or transform artwork using Gemini 3 Pro's capabilities without regenerating from scratch.
What does nano-banana-pro do for combining multiple images?
Nano Banana Pro can combine multiple images into a single composite scene using Gemini 3 Pro Image. This multi-image synthesis feature lets you merge separate images into unified compositions, ideal for creating complex artwork or layered designs.
What output resolutions does nano-banana-pro support?
Nano Banana Pro supports high-resolution image generation at 1K, 2K, and 4K quality levels. Choose your desired resolution when running commands to control output detail and file size for your generated or edited images.
Can I automate image generation workflows with nano-banana-pro?
Yes, nano-banana-pro is designed for automation through command-line scripts. You can batch-process image generation, editing, and compositing tasks programmatically, making it ideal for integrating AI image creation into larger workflows or pipelines.
What license does nano-banana-pro use?
Nano Banana Pro is released under the MIT license, allowing free use, modification, and distribution for both personal and commercial projects with minimal restrictions.
SKILL.md
rendered from the published skill — quoted content, verbatim
Nano Banana Pro (Gemini 3 Pro Image)
使用内置脚本生成或编辑图像。
生成图像
uv run {baseDir}/scripts/generate_image.py --prompt "你的图像描述" --filename "output.png" --resolution 1K
编辑图像(单张)
uv run {baseDir}/scripts/generate_image.py --prompt "编辑指令" --filename "output.png" -i "/path/in.png" --resolution 2K
多图合成(最多 14 张图像)
uv run {baseDir}/scripts/generate_image.py --prompt "将这些图像合成为一个场景" --filename "output.png" -i img1.png -i img2.png -i img3.png
API 密钥配置
- 设置
GEMINI_API_KEY环境变量 - 或在
~/.clawdbot/moltbot.json中设置skills."nano-banana-pro".apiKey/skills."nano-banana-pro".env.GEMINI_API_KEY
注意事项
- 支持分辨率:
1K(默认)、2K、4K - 建议文件名使用时间戳格式:
yyyy-mm-dd-hh-mm-ss-name.png - 脚本会输出
MEDIA:行,便于 Moltbot 在支持的聊天平台上自动附加图片 - 不要读取生成的图像内容,只需报告保存路径即可
Read as markdown · JSON record · Browse the source repository
File tree — 2 files
skills/library/nano-banana-pro/SKILL.md
skills/library/nano-banana-pro/scripts/generate_image.py