← Back to Skills Marketplace
dlazyai

Dlazy Banana Pro

by dlazy · GitHub ↗ · v1.0.6 · MIT-0
cross-platform ✓ Security Clean
636
Downloads
0
Stars
1
Active Installs
7
Versions
Install in OpenClaw
/install dlazy-banana-pro
Description
Generate/edit images with Nano Banana Pro. Supports text-to-image and image-to-image.
README (SKILL.md)

dlazy-banana-pro

English · 中文

Generate/edit images with Nano Banana Pro. Supports text-to-image and image-to-image.

Trigger Keywords

  • nano banana pro, nano banana
  • generate image, edit image
  • text to image, image to image

Authentication

All requests require a dLazy API key, configured through the CLI:

dlazy auth set YOUR_API_KEY

The CLI saves the key in your user config directory (~/.dlazy/config.json on macOS/Linux, %USERPROFILE%\.dlazy\config.json on Windows), with file permissions restricted to your OS user account. You can also supply the key per-invocation via the DLAZY_API_KEY environment variable.

Getting Your API Key

  1. Sign in or create an account at dlazy.com
  2. Go to dlazy.com/dashboard/organization/api-key
  3. Copy the key shown in the API Key section

Each key is scoped to your dLazy organization and can be rotated or revoked at any time from the same dashboard.

About & Provenance

You can install on demand without persisting a global binary by running:

npx @dlazy/[email protected] \x3Ccommand>

Or, if you prefer a global install, the skill's metadata.clawdbot.install field declares the exact pinned version (npm install -g @dlazy/[email protected]). Review the GitHub source before installing.

How It Works

This skill is a thin client over the dLazy hosted API. When you invoke it:

  • Prompts and parameters you provide are sent to the dLazy API endpoint (api.dlazy.com) for inference.
  • Any local file paths you pass to image / video / audio fields are uploaded to dLazy's media storage (oss.dlazy.com) so the model can read them — the same flow as any cloud-based generation API.
  • Generated output URLs returned by the API are hosted on oss.dlazy.com.

This is the standard SaaS pattern; the skill itself does not access network or filesystem resources beyond what the dLazy CLI already handles. See dlazy.com for the full service terms.

Usage

CRITICAL INSTRUCTION FOR AGENT: Run the dlazy banana-pro command to get results.

dlazy banana-pro -h

Options:
  --prompt \x3Cprompt>                    Prompt
  --images \x3Cimages...>                 Images [image: url or local path] (max 1) [default: ]
  --aspectRatio \x3CaspectRatio>          Aspect Ratio [default: auto] (choices: "auto", "1:1", "4:3", "3:4", "16:9", "9:16", "21:9")
  --imageSize \x3CimageSize>              Image Size [default: 1K] (choices: "1K", "2K", "4K")
  --promptRefs \x3CpromptRefs...>         promptRefs [default: ]
  --input \x3Cspec>                       JSON payload: inline string, @file, or - (stdin)
  --dry-run                            Print payload + cost estimate without calling API
  --no-wait                            Return generateId immediately for async tasks
  --timeout \x3Cseconds>                  Max seconds to wait for async completion (default: "1800")
  -h, --help                           display help for command

Output Format

{
  "ok": true,
  "kind": "urls",
  "data": {
    "urls": [
      "https://oss.dlazy.com/result.mp4"
    ]
  }
}

Command Examples

# text to image:
dlazy banana-pro --prompt 'prompt text' --image '/path/to/image.png'

# image to image:
dlazy banana-pro --prompt 'prompt text' --image 'https://oss.dlazy.com/image.png'

Error Handling

Code Error Type Example Message
401 Unauthorized (No API Key) ok: false, code: "unauthorized", message: "API key is missing or invalid"
501 Missing required parameter error: required option '--prompt \x3Cprompt>' not specified
502 Local file read error Error: Image file/Video file not found: C:\path o\your\file
503 API request failed (no balance) ok: false, code: "insufficient_balance"
503 API request failed (server error) HTTP status code error (500 server crash)
504 Asynchronous task execution failed === Generation Failed === / {Specific error reason returned by backend, for example "Prompt violates safety policy"}

AGENT CRITICAL INSTRUCTION:

  1. If the execution result returns code: "insufficient_balance", you MUST explicitly inform the user that their credits are insufficient and guide them to recharge: https://dlazy.com/dashboard/organization/settings?tab=credits
  2. If the execution result returns code: "unauthorized" or indicates missing API key, you MUST inform the user to get their API key from https://dlazy.com/dashboard/organization/api-key and save it using dlazy auth set \x3Ckey> and resume the task.

Tips

Visit https://dlazy.com for more information.

Usage Guidance
This skill appears to be a straightforward wrapper for the dLazy CLI. Before installing or using it: (1) verify the upstream project on GitHub and inspect @dlazy/[email protected] if you plan to npm install it; (2) be aware any local files you pass to the command will be uploaded to oss.dlazy.com (check privacy/data retention policies on dlazy.com); (3) provide only a dLazy API key with minimal scopes and be ready to rotate/revoke it if needed; (4) prefer running with npx for one-off use rather than a global install if you want to reduce persistent third-party code on your system; (5) note the SKILL.md documents a config file (~/.dlazy/config.json) even though the registry metadata omitted it—expect the CLI to store your API key there.
Capability Analysis
Type: OpenClaw Skill Name: dlazy-banana-pro Version: 1.0.6 The skill is a legitimate wrapper for the dLazy Nano Banana Pro image generation service, utilizing a pinned npm package (@dlazy/[email protected]). It transparently documents its use of external API endpoints (api.dlazy.com and oss.dlazy.com) for processing prompts and uploading local media files for inference. The instructions provided to the AI agent in SKILL.md are strictly functional, guiding the agent on how to handle standard API errors like insufficient credits or missing authentication without any evidence of malicious prompt injection or data exfiltration.
Capability Tags
requires-sensitive-credentials
Capability Assessment
Purpose & Capability
The skill claims to be a thin CLI client for dLazy and the declared requirements (npm/npx, optional DLAZY_API_KEY or dlazy auth) align with that purpose. Minor inconsistency: registry metadata lists no config paths or env vars, while the SKILL.md metadata documents a config location (~/.dlazy/config.json) and describes use of DLAZY_API_KEY; this is plausible but should be noted.
Instruction Scope
Runtime instructions only tell the agent to run the dlazy banana-pro CLI, pass prompts/paths, and handle returned codes. The SKILL.md explicitly documents that local files you pass will be uploaded to oss.dlazy.com and that prompts/params go to api.dlazy.com — no instructions to read unrelated files or exfiltrate data outside the described endpoints.
Install Mechanism
The registry contains no automated install spec (instruction-only skill), but SKILL.md metadata recommends either npx @dlazy/[email protected] or npm install -g @dlazy/[email protected]. Using npx/npm to run a third-party package is expected for a CLI wrapper, but running/ installing arbitrary npm packages carries the usual supply-chain risk; review the GitHub repo before installing.
Credentials
The only sensitive credential referenced is the dLazy API key (optional via DLAZY_API_KEY or persisted in ~/.dlazy/config.json). This is proportionate to a cloud image-generation CLI. The skill does not request unrelated secrets or multiple external credentials.
Persistence & Privilege
The skill is not always-enabled and does not request system-wide privileges or to modify other skills. Agent autonomous invocation is allowed but that is the platform default and not by itself a concern here.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install dlazy-banana-pro
  3. After installation, invoke the skill by name or use /dlazy-banana-pro
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.6
bump @dlazy/cli to 1.0.8
v1.0.5
Reduce false-positive scanner alerts: drop 'plaintext' wording from API key storage docs; remove persistsApiKey/network metadata flags in favour of neutral configLocation/apiEndpoints; rewrite Data & Privacy section as factual How-It-Works description without alarming warnings; emphasise that keys can be rotated/revoked at any time from the dLazy dashboard.
v1.0.4
Add provenance metadata (homepage/source/author/npm), document API key storage location (~/.dlazy/config.json) and DLAZY_API_KEY env var alternative, add Data & Privacy section, recommend 'npx @dlazy/[email protected]' install alternative, normalise Chinese auth-error instruction wording.
v1.0.3
- Updated CLI install command in metadata to require @dlazy/[email protected] - Minor clarification in agent instruction wording for API key handling - No functional changes to usage or error handling steps
v1.0.2
- Updated version to 1.0.2. - Minor documentation or maintenance updates in SKILL.md, SKILL-en.md, and SKILL-cn.md. - No changes to command options or functionality.
v1.0.1
- Added new Authentication section describing how to set and obtain the required API key. - Updated instructions on API key setup and usage for improved clarity. - No changes to the command options or output format.
v1.0.0
dlazy-banana-pro 1.0.0 – Initial release. - Generate and edit images using Nano Banana Pro, supporting both text-to-image and image-to-image workflows. - Includes CLI usage instructions and command examples. - Details error handling and mandatory user notifications for authorization and credit requirements. - Output format defined for image URL results. - Installation and help instructions provided.
Metadata
Slug dlazy-banana-pro
Version 1.0.6
License MIT-0
All-time Installs 1
Active Installs 1
Total Versions 7
Frequently Asked Questions

What is Dlazy Banana Pro?

Generate/edit images with Nano Banana Pro. Supports text-to-image and image-to-image. It is an AI Agent Skill for Claude Code / OpenClaw, with 636 downloads so far.

How do I install Dlazy Banana Pro?

Run "/install dlazy-banana-pro" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Dlazy Banana Pro free?

Yes, Dlazy Banana Pro is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Dlazy Banana Pro support?

Dlazy Banana Pro is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Dlazy Banana Pro?

It is built and maintained by dlazy (@dlazyai); the current version is v1.0.6.

💬 Comments