← 返回 Skills 市场
dlazyai

Dlazy Banana Pro

作者 dlazy · GitHub ↗ · v1.0.6 · MIT-0
cross-platform ✓ 安全检测通过
636
总下载
0
收藏
1
当前安装
7
版本数
在 OpenClaw 中安装
/install dlazy-banana-pro
功能描述
Generate/edit images with Nano Banana Pro. Supports text-to-image and image-to-image.
使用说明 (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.

安全使用建议
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.
功能分析
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.
能力标签
requires-sensitive-credentials
能力评估
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.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install dlazy-banana-pro
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /dlazy-banana-pro 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
Slug dlazy-banana-pro
版本 1.0.6
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 7
常见问题

Dlazy Banana Pro 是什么?

Generate/edit images with Nano Banana Pro. Supports text-to-image and image-to-image. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 636 次。

如何安装 Dlazy Banana Pro?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install dlazy-banana-pro」即可一键安装,无需额外配置。

Dlazy Banana Pro 是免费的吗?

是的,Dlazy Banana Pro 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Dlazy Banana Pro 支持哪些平台?

Dlazy Banana Pro 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Dlazy Banana Pro?

由 dlazy(@dlazyai)开发并维护,当前版本 v1.0.6。

💬 留言讨论