📦 Nano Banana Image — Nano工具

v1.0.0

[AI辅助] Generate and edit AI images with NanoBanana (Gemini-based) via AceDataCloud API. Use when creating images from text prompts or editing existing images with t...

0· 92·0 当前·0 累计
by @germey (Germey)·MIT-0
下载技能包
License
MIT-0
最后更新
2026/3/22
0
安全扫描
VirusTotal
无害
查看报告
OpenClaw
可疑
medium confidence
The skill's instructions match its stated purpose (calling AceDataCloud's NanoBanana image API) but the package metadata omits an environment variable the SKILL.md requires and the optional pip package is unreviewed — these inconsistencies deserve caution.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.0.02026/3/22

Initial release of nano-banana-image skill. - Generate and edit AI images via AceDataCloud NanoBanana (Gemini-based) API. - Supports both standard (`nano-banana`) and high-quality (`nano-banana-pro`) models. - Enables text-to-image and image editing workflows using natural language prompts. - No mask needed for editing; simply describe desired changes. - Returns direct image URLs with flexible aspect ratios. - Requires ACEDATACLOUD_API_TOKEN for authentication.

无害

安装命令

点击复制
官方npx clawhub@latest install acedatacloud-nano-banana-image
🇨🇳 镜像加速npx clawhub@latest install acedatacloud-nano-banana-image --registry https://cn.longxiaskill.com

技能文档

Generate and edit AI images through AceDataCloud's NanoBanana (Gemini-based) API.

Authentication

export ACEDATACLOUD_API_TOKEN="your-token-here"

Quick 开始

curl -X POST https://api.acedata.cloud/nano-banana/images \
  -H "Authorization: Bearer $ACEDATACLOUD_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"prompt": "a watercolor painting of a French countryside village", "model": "nano-banana"}'

Models

ModelBest For
nano-bananaStandard image generation (default)
nano-banana-proHigher quality, more detailed output

Workflows

1. Text-到-Image

POST /nano-banana/images
{
  "prompt": "a photorealistic macro shot of morning dew on a spider web",
  "model": "nano-banana-pro",
  "aspect_ratio": "16:9"
}

2. Image Editing

Edit an existing image using natural language instructions — no mask needed.

POST /nano-banana/images/edit
{
  "prompt": "change the background to a starry night sky",
  "image_url": "https://example.com/photo.jpg",
  "model": "nano-banana"
}

Parameters

Generation

ParameterValuesDescription
model"nano-banana", "nano-banana-pro"Model to use
aspect_ratio"1:1", "3:4", "4:3", "9:16", "16:9"Output aspect ratio

Editing

ParameterRequiredDescription
image_urlYesURL of the source image
promptYesNatural language editing instruction
modelNoModel to use (defaults to "nano-banana")
aspect_ratioNoOutput aspect ratio

MCP Server

pip install mcp-nano-banana

Or hosted: https://nano-banana.mcp.acedata.cloud/mcp

Key tools: nano_banana_generate_image, nano_banana_edit_image

Gotchas

  • Editing 做 require mask — 只是 describe 更改 在...中 natural language
  • nano-banana-pro produces significantly 更多 detailed results 但是 costs 更多
  • Results return direct image URL — 否 task polling needed
  • Aspect ratio uses colon notation (e.g., "16:9") 不 pixel dimensions
  • Gemini-based 模型 excels 在 understanding complex, conversational editing instructions
数据来源:ClawHub ↗ · 中文优化:龙虾技能库