Install
openclaw skills install banana-v2ClawHub Security found sensitive or high-impact capabilities. Review the scan results before using.
Generate AI images with multiple resolutions and models, smartly split into grids, manage galleries, and support five languages including batch downloads.
openclaw skills install banana-v2English | 简体中文
Nano Banana V2 is a powerful AI image generation and smart splitting tool based on the AceData Nano Banana series models. It provides a complete web interface for image generation, editing, splitting, and management.

cd ~/.openclaw/workspace/skills/nano-banana-v2
npm install
npm start
Open browser at http://localhost:2688
First-time use requires API Key configuration:
| Item | Required | Description |
|---|---|---|
| API Key | ✅ | For image generation |
| Platform Token | ❌ | For image-to-image feature |
| LLM API Key | ❌ | For AI prompt generation |
| Save Path | ❌ | Image save directory (Default: Desktop/banana2) |
nano-banana-v2/
├── server/
│ ├── index.js # Main server
│ └── services/ # Service classes
│ ├── database.js # Database service
│ ├── request.js # Request handling
│ ├── task.js # Task processing
│ └── upload.js # Upload handling
├── public/
│ ├── index.html # Main page
│ ├── list.html # List page
│ ├── set.html # Settings page
│ ├── components/ # UI components
│ ├── css/ # Styles
│ ├── js/ # Application logic
│ └── lan/ # Language files
├── config/
│ ├── set.json # Main config
│ ├── system.prompt # AI system prompt
│ └── cut_*.prompt # Split prompts
├── database/
│ ├── 1.sql # Database init
│ └── 2.sql # Database migration
├── package.json
├── README.md
├── LICENSE
└── CHANGELOG.md
| Method | Path | Description |
|---|---|---|
| GET | /api/get_set | Get config |
| POST | /api/generate | Submit generation task |
| POST | /api/poll/:id | Poll task status |
| POST | /api/upload | Upload image |
| GET | /api/works | Get works list |
| GET | /api/work/:id | Get single work |
| POST | /api/tasks/add | Add task manually |
| POST | /api/admin/delete/:id | Delete work |
| POST | /api/open-folder | Open folder |
| POST | /api/generate-prompt | AI generate prompt |
| POST | /api/shutdown | Shutdown service |