nano-banana-edit

द्वारा agentspace-so

We need to translate the given text from English to Hindi. The text describes an agent skill for editing images using Google Nano Banana 2 on RunComfy. It mentions strengths, schema, routing alternatives, and CLI command. The target language is Hindi. We must preserve product names, protocol names, URLs, numbers, technical terms. Do not add any extra commentary or labels. Only translate the text inside <text>. The name "nano-banana-edit" is not in the source text, so we don't include it. The source text ends with "image edit nano..." which is incomplete but we translate as is. Let's translate carefully: "Edit images with Google Nano Banana 2 (image-to-image edit endpoint) on RunComfy." -> "RunComfy पर Google Nano Banana 2 (इमेज-टू-इमेज एडिट एंडपॉइंट) के साथ इमेज संपादित करें।" "Documents Nano Banana Edit's strengths (preserve subject identity, swap

npx skills add https://github.com/agentspace-so/runcomfy-agent-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.

agentspace-so की और Skills

ai-avatar-video
agentspace-so
Create AI avatar, talking-head, and lip-sync videos on RunComfy via the `runcomfy` CLI. Routes across ByteDance OmniHuman (audio-driven full-body avatar), Wan-AI Wan 2-7 (audio-driven mouth sync via `audio_url` on a portrait), HappyHorse 1.0 (Arena #1 t2v / i2v with in-pass audio), and Seedance v2 Pro (multi-modal cinematic with reference audio + reference subject). Picks the right model for the user's actual intent — UGC voiceover, virtual presenter, dubbed product demo, lip-synced...
videocreativemedia
ai-music
agentspace-so
We need to translate the given English text into Hindi, preserving the name "ai-music" if it appears, but it does not appear in the text. The text describes an agent skill for generating AI music via RunComfy CLI. We must not add any extra commentary, labels, or formatting. Just the translation. The text includes product names: RunComfy, ElevenLabs AI Music Generation, ACE Step, ACE Step 1.5, StepFun-AI. Also technical terms: CLI, premium 44.1 kHz stereo vocal tracks, 5 s–5 min, $0.0083/s, open-weights, tag-driven composition, multilingual lyrics, $0.0002–0.0003/s, ~27× cheaper, audio-inpaint, audio-outpaint, regenerate a time range, extend a track before or after. Also "Picks the right..." is incomplete but we translate as is. We need to output only the translated text. Use Hindi script. Ensure numbers, units, prices, and technical terms are preserved as is.
creativeaudioapi
video-edit
agentspace-so
RunComfy पर मौजूद वीडियो को संपादित करें — यह स्किल एक स्मार्ट राउटर है जो उपयोगकर्ता के इरादे को RunComfy कैटलॉग में सही एडिट मॉडल से मिलाता है। Wan 2.7 Edit-Video (सामान्य रीस्टाइल / बैकग्राउंड स्वैप / पैकेजिंग स्वैप, पहचान और गति संरक्षण), Kling 2.6 Pro Motion Control (एक रेफरेंस वीडियो से लक्ष्य कैरेक्टर पर सटीक गति स्थानांतरित करना), या Lucy Edit Restyle (हल्का पहचान-स्थिर रीस्टाइल / आउटफिट स्वैप
videocreativemedia
relight
agentspace-so
Relight a still image — change the lighting setup, color temperature, direction, or mood — on RunComfy via the `runcomfy` CLI. Routes to Qwen Edit 2509's dedicated `relight` LoRA endpoint for purpose-built relighting, with fallback to identity-preserving edit endpoints (Nano Banana 2 Edit, GPT Image 2 Edit, FLUX Kontext Pro) when prose lighting language is enough. Use for product relighting (studio softbox → window light), portrait mood shift (overcast → golden hour), or color-grade change....
creativeimagemedia
kling-3-0
agentspace-so
RunComfy पर Kling 3.0 वीडियो जनरेशन। Kling 3.0 (जिसे Kling V3.0 भी कहा जाता है) Kuaishou Technology का तीसरी पीढ़ी का मल्टी-शॉट वीडियो मॉडल है जिसमें मूल सिंक्रोनाइज़्ड ऑडियो और शॉट्स में सुसंगत चरित्र पहचान है। यह स्किल सभी छह Kling 3.0 एंडपॉइंट्स को कवर करता है, जो तीन रेंडरिंग टियर (Standard, Pro, 4K) और दो मोड (टेक्स्ट-टू-वीडियो, इमेज-टू-वीडियो) में फैले हुए
creativevideomedia
runcomfy-cli
agentspace-so
We need to translate the given English text into Hindi. The text describes a CLI tool called runcomfy-cli (name preserved). The instruction says to translate only the text inside <text>, and not include the name unless it appears in the source text. The name "runcomfy-cli" is not in the source text; the source mentions "runcomfy CLI" but that's different. The name to preserve is "runcomfy-cli" but it's not in the source. So we just translate the text. We need to preserve product names, protocol names, URLs, numbers, technical terms. So "RunComfy", "CLI", "ControlNet", "LoRA" etc. should remain as is. Also "image generation", "video generation" etc. are technical terms but can be translated? The instruction says preserve technical terms. Typically, terms like "image generation" might be translated if common, but to be safe, we can keep them in English or use common Hindi equivalents. However, the instruction says "preserve technical terms" -
creativemediaapi
happyhorse-1-0
agentspace-so
RunComfy पर HappyHorse 1.0 के साथ टेक्स्ट-टू-वीडियो जनरेट करें। HappyHorse 1.0 की खूबियों (आर्टिफिशियल एनालिसिस वीडियो एरिना में #1, नेटिव 1080p के साथ इन-पास सिंक्रोनाइज़्ड ऑडियो, मल्टी-शॉट कैरेक्टर कंसिस्टेंसी, 6-भाषा प्रॉम्प्ट सपोर्ट), अवधि / आस्पेक्ट-रेटियो / रिज़ॉल्यूशन स्कीमा, और Wan 2.7 / Seedance 2 / LTX 2 पर कब रूट करना है, का दस्तावेज़ीकरण करता है।
creativevideomedia
ai-image-generation
agentspace-so
Generate and edit images on RunComfy via the `runcomfy` CLI — a smart router across the full image-model catalog: FLUX 2 (Klein 9B/4B, Pro, Dev, Flash, Turbo, Max), Google Nano Banana 2 / Pro, OpenAI GPT Image 2, ByteDance Seedream 5 / 4-5 / 4-0 and Dreamina 4-0, Alibaba Qwen Image and Z-Image Turbo, Wan 2-7. Covers both text-to-image (t2i) and image-to-image / edit (i2i) endpoints — the skill picks the right model for the user's actual intent (typography precision, photoreal portraits,...
creativemediaimage