nano-banana-edit

作者: doany-ai

Edit images with Google Nano Banana 2 (image-to-image edit endpoint) on RunComfy. Documents Nano Banana Edit's strengths (preserve subject identity, swap background, localize edits with spatial language, multi-image batch edits up to 20 inputs), the schema, and when to route to GPT Image 2 edit / Flux Kontext / Nano Banana 2 t2i instead. Calls `runcomfy run google/nano-banana-2/edit` through the local RunComfy CLI. Triggers on "nano banana edit", "edit with nano banana", "image edit nano...

npx skills add https://github.com/doany-ai/skills --skill nano-banana-edit

Nano Banana Edit — Pro Pack on RunComfy

runcomfy.com · Edit endpoint · GitHub

Google Nano Banana 2 Edit — the image-to-image edit endpoint of the Gemini-family flash-tier image model — hosted on the RunComfy Model API. Up to 20 input images per call for batch edits and multi-reference variation.

npx skills add agentspace-so/runcomfy-skills --skill nano-banana-edit -g

When to pick this model (vs siblings)

You wantUse
Preserve subject identity, swap background or clothingNano Banana Edit
Edit up to 20 images consistently in one batchNano Banana Edit
Localize edit to "X only" with spatial languageNano Banana Edit
Edit multilingual text inside the image (signs, labels)GPT Image 2 edit
Single ref + precise local edit ("she's now holding X")Flux Kontext
Generate a new image from scratchNano Banana 2 t2i (sibling skill)

If the user said "nano banana edit" / "edit with nano banana" explicitly, route here regardless.

Prerequisites

  1. RunComfy CLInpm i -g @runcomfy/cli
  2. RunComfy accountruncomfy login opens a browser device-code flow.
  3. CI / containers — set RUNCOMFY_TOKEN=<token> instead of runcomfy login.

Endpoints + input schema

google/nano-banana-2/edit

FieldTypeRequiredDefaultNotes
promptstringyesEdit instruction. Lead with preservation, end with the change.
image_urlsarrayyes1–20 publicly-fetchable HTTPS URLs.
number_of_imagesintno11–4 outputs per call.
seedintnoReproducibility.
aspect_ratioenumnoautoauto (follows input) or fixed ratios — lock for batch consistency.
resolutionenumno1K0.5K / 1K / 2K / 4K.
output_formatenumnopngpng / jpeg / webp.
safety_toleranceintno41 (strict) – 6 (permissive).
limit_generationsboolnoIf true, restricts each round to one output.
enable_web_searchboolnofalseWeb grounding (extra cost / latency).

How to invoke

Single-image background swap, identity preserved:

runcomfy run google/nano-banana-2/edit \
  --input '{
    "prompt": "Keep the subject identity, pose, and clothing unchanged. Convert the background into a rainy neon cyberpunk street.",
    "image_urls": ["https://.../portrait.jpg"]
  }' \
  --output-dir <absolute/path>

Batch edit with locked framing:

runcomfy run google/nano-banana-2/edit \
  --input '{
    "prompt": "Replace the watermark in the bottom-right with the text \"AURA\" in clean white sans-serif. Keep everything else exactly as in the input.",
    "image_urls": ["https://.../sku-1.jpg", "https://.../sku-2.jpg", "https://.../sku-3.jpg"],
    "aspect_ratio": "1:1",
    "resolution": "1K"
  }' \
  --output-dir <absolute/path>

Targeted spatial edit ("left object only"):

runcomfy run google/nano-banana-2/edit \
  --input '{
    "prompt": "Remove the leftmost object only. Keep the right two objects, the table, and the lighting unchanged.",
    "image_urls": ["https://.../still-life.jpg"]
  }' \
  --output-dir <absolute/path>

Prompting — what actually works

Preservation first, change last. Always lead with "Keep [identity / pose / clothing / brand / framing] unchanged." Then state the change in one clean sentence. Models honor what's stated up front; tail-end preservations get ignored.

Localize with spatial language. "background only", "the left object", "the upper-right corner", "above the headline" — concrete spatial scopes are honored. "make it more X" is vague and drifts.

Batch consistency — when editing a series, lock aspect_ratio and resolution. Use the same prompt grammar across the batch so each output reads as a sibling, not a remix.

Iterate small. If a one-pass edit drifts, split into two: pass 1 changes background only, pass 2 swaps the subject's outfit. Cleaner edits, same total cost (assuming similar resolution).

Multi-image variation — pass up to 20 inputs to get a coherent batch. Useful for SKU galleries, A/B testing, character sheet variations.

Anti-patterns:

  • Long compound instructions ("change A and B and C and D") — drift increases per added scope.
  • Edit instructions written in passive voice ("the background should be changed") — be imperative.
  • Missing preservation goals — model will subtly rewrite the face / brand.
  • Aspect ratios that don't match input — causes crops or stretches.

Where it shines

Use caseWhy Nano Banana Edit
SKU gallery — same product on different backgroundsBatch of 20, identity-preserved, framing locked
Influencer / spokesperson background swapsStrong identity preservation across edits
Localized object removal / additionSpatial language honored
A/B variants for ad creativeSeed lock + multiple number_of_images
Brand-asset relocalizationSame composition with text / palette swap

Sample prompts (verified to produce strong results)

Background swap (page example):

Keep the subject identity unchanged. Convert the background into a rainy
neon cyberpunk street.

Targeted text replacement:

Keep the bottle, label, and lighting exactly as in the input.
Replace only the brand text on the label from "ALPHA" to "AURA",
same font weight, centered, white on black.

Multi-image batch consistency:

For each input image: keep the subject's pose and identity unchanged.
Convert the background to a soft warm-grey studio sweep with subtle
floor shadow. Center the subject at the same fraction of frame as the
input.

Limitations

  • 1–20 input images per call — the first is treated as primary; the rest provide auxiliary cues.
  • 1–4 outputs per call.
  • Long compound prompts drift — split into multiple passes.
  • Web search adds latency + cost — only enable on demand.
  • For multilingual in-image text edits, GPT Image 2 edit wins.

Exit codes

codemeaning
0success
64bad CLI args
65bad input JSON / schema mismatch
69upstream 5xx
75retryable: timeout / 429
77not signed in or token rejected

Full reference: docs.runcomfy.com/cli/troubleshooting.

How it works

The skill invokes runcomfy run google/nano-banana-2/edit with a JSON body matching the schema. The CLI POSTs to https://model-api.runcomfy.net/v1/models/google/nano-banana-2/edit, polls the request, fetches the result, and downloads any .runcomfy.net/.runcomfy.com URL into --output-dir. Ctrl-C cancels the remote request before exit.

Security & Privacy

  • Token storage: runcomfy login writes the API token to ~/.config/runcomfy/token.json with mode 0600 (owner-only read/write). Set RUNCOMFY_TOKEN env var to bypass the file entirely in CI / containers.
  • Input boundary: the user prompt is passed as a JSON string to the CLI via --input. The CLI does NOT shell-expand the prompt; it transmits the JSON body directly to the Model API over HTTPS. No shell injection surface from prompt content.
  • Third-party content: image / mask / video URLs you pass are fetched by the RunComfy model server, not by the CLI on your machine. Treat external URLs as untrusted; image-based prompt injection is a known risk for any image-edit / video-edit model.
  • Outbound endpoints: only model-api.runcomfy.net (request submission) and *.runcomfy.net / *.runcomfy.com (download whitelist for generated outputs). No telemetry, no callbacks.
  • Generated-file size cap: the CLI aborts any single download > 2 GiB to prevent disk-fill from a malicious or runaway model output.

来自 doany-ai 的更多技能

image-edit
doany-ai
在RunComfy上编辑图像——该技能是一个智能路由,能将用户意图匹配到RunComfy目录中的正确编辑模型。可选择Nano Banana Edit(最多批量处理20张,默认保留身份特征)、OpenAI GPT Image 2 Edit(多语言图像内文本重写、多参考合成、布局精准)、Flux Kontext Pro(单参考高保真局部编辑)或Z-Image Turbo Inpaint(遮罩驱动的精准区域编辑)。该技能整合了每个模型的文档化提示模式,从而...
creativeimagemedia
seedance-v2
doany-ai
我们被要求将一段英文文本翻译成简体中文。文本描述了一个名为"seedance-v2"的agent skill。需要保留名称"seedance-v2"(但注意指令说"不要包含名称,除非它在源文本中出现"——源文本中出现了"seedance-v2"在最后一行?实际上最后一行是"seedance...",但前面有"seedance-v2"在路径中。指令说"Preserve product names, protocol names, URLs, numbers, and technical terms." 所以"seedance-v2"应该保留。但注意指令说"Translate only the text inside <text>. Do not include the name unless it appears in the source text." 所以如果名称出现在源文本中,就保留。这里"seedance-v2"出现在"runcomfy run bytedance/seedance-v2/pro"中,所以保留。另外"Seedance 2.0 Pro"也是产品名,保留。"RunComfy"保留。"HappyHorse 1.0 / Wan 2.7 /
videocreativemedia
kling-3-0
doany-ai
RunComfy上的Kling 3.0视频生成。Kling 3.0(也称Kling V3.0)是快手科技第三代多镜头视频模型,具备原生同步音频及跨镜头一致的角色身份。该技能覆盖全部六个Kling 3.0端点,涵盖三种渲染级别(标准、专业、4K)和两种模式(文生视频、图生视频)。通过本地RunComfy CLI调用runcomfy run kling/kling-3.0/ /。触发词为"kling"、"kling 3.0"、"kling v3"、"kling pro"等。
videocreativemedia
face-swap
doany-ai
我们要求翻译一段文本,目标语言是简体中文。文本内容是关于一个名为"face-swap"的agent skill的描述。需要保留产品名称、协议名称、URL、数字和技术术语。不要添加任何额外内容。文本中提到了多个工具/模型名称:RunComfy, runcomfy CLI, Wan 2-2 Animate, GPT Image 2 Edit, Nano Banana Edit, Flux Kontext, Kling 2-6 Motion Control Pro。这些都需要保留原样。另外注意"face-swap"是名称,但文本中没有出现,所以不翻译。翻译时只翻译<text>内的内容,不要包含"description"等标签。 文本内容:描述通过runcomfy CLI在RunComfy上实现换脸/换角色到视频或图像中。跨越多个社区模型/工具。最后一句"Picks the right model for..."不完整,但按原样翻译。 翻译时注意技术术语的准确性,比如"audio-driven character animation"译为"音频驱动的角色动画","identity swap"译为
creativevideoimage
video-outpainting
doany-ai
我们要求翻译一段文本,目标语言是简体中文。需要保留产品名称、协议名称、URL、数字和技术术语。不要添加声明、解释、Markdown、项目符号、链接、标签、前缀或额外评论。只翻译<text>内的内容,不包括名称除非它在源文本中出现。不要添加"description"、"server name"、"skill name"等标签。 源文本是英文,描述了一个agent skill:video-outpainting。翻译时注意保持技术术语如"RunComfy"、"CLI"、"Wan 2-7 edit-video"、"ComfyUI"等不翻译。注意"video-outpainting"是名称,但源文本中出现了"Video outpainting"作为开头,所以需要翻译"Video outpainting"为"视频外扩"或类似?但要求保留名称,但名称是"video-outpainting",而源文本中写的是"Video outpainting",大小写不同。根据指令"Name to preserve: video-outpainting",但源文本中出现的
videocreativemedia
ai-avatar-video
doany-ai
We need to translate the given English text into Simplified Chinese. The instruction says to preserve product names, protocol names, URLs, numbers, and technical terms. The name "ai-avatar-video" is not in the text, so we don't include it. We must not add any labels or extra commentary. Just translate the text inside <text> tags. The text describes creating AI avatar videos using runcomfy CLI, mentioning various models: ByteDance OmniHuman, Wan-AI Wan 2-7, HappyHorse 1.0, Seedance v2 Pro. Also mentions user intents like UGC voiceover, virtual presenter, etc. We need to ensure technical terms like "t2v", "i2v", "in-pass audio", "multi-modal cinematic" are preserved or appropriately translated? The instruction says preserve technical terms, so we can keep them as is or translate if common? But "t2v" and "i2v" are likely abbreviations for text-to-video and image-to-video, which are common. However,
videocreativemedia
flux-kontext
doany-ai
在RunComfy上使用Flux 1 Kontext Pro(Black Forest Labs的精准局部图像编辑模型)编辑图像——该技能内置了模型文档中的提示模式,因此相比直接使用同一模型进行简单提示,能获得更清晰的输出。文档说明了Flux Kontext的优势(单参考精准局部编辑、强提示控制、一致的高保真输出)、模式(单图像+提示),以及何时改用Nano Banana Edit / GPT Image 2 edit / Flux 2 Klein。调用...
creativeimagedocument
relight
doany-ai
我们要求翻译一段文本,目标语言是简体中文。需要保留产品名、协议名、URL、数字和技术术语。不要添加声明、解释、Markdown、项目符号、链接、标签、前缀或额外评论。只翻译<text>内的内容。注意不要包含名称"relight"除非它在源文本中出现。源文本中第一句就有"Relight",所以需要翻译。但注意指令说"不要包含名称除非它出现在源文本中",所以"Relight"作为动词应该翻译,但作为产品名或技能名?实际上"relight"在文本中作为动词出现,但也是技能名称。指令说"Name to preserve: relight",但翻译时只翻译文本,不额外添加名称。所以"Relight"作为动词应该翻译为"重新打光"或类似。但注意保留技术术语如"LoRA"、"CLI"等。另外"RunComfy"、"Qwen Edit 2509"、"Nano Banana 2 Edit"等是产品名,保留。翻译要
creativeimagemedia