Dlazy Gpt Image 2

v1.0.5

GPT Image 2 model for text-to-image and image editing. Supports generating images from text as well as editing and synthesizing images with reference inputs....

0· 124·1 current·1 all-time
bydlazy@dlazyai

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for dlazyai/dlazy-gpt-image-2.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Dlazy Gpt Image 2" (dlazyai/dlazy-gpt-image-2) from ClawHub.
Skill page: https://clawhub.ai/dlazyai/dlazy-gpt-image-2
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required binaries: npm, npx
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install dlazy-gpt-image-2

ClawHub CLI

Package manager switcher

npx clawhub@latest install dlazy-gpt-image-2
Security Scan
Capability signals
Requires sensitive credentials
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description match the runtime instructions: the skill tells the agent to run the dlazy CLI to call dLazy's image API. Declared required binaries (npm, npx) align with the provided install / npx usage in the docs and the stated provenance (GitHub / npm).
Instruction Scope
SKILL.md instructs only to run the dlazy CLI, pass prompts and optionally local image paths, and to handle standard API responses. It explicitly states local files will be uploaded to oss.dlazy.com and outputs will be hosted there — this is expected for a cloud image generation client. There is no instruction to read unrelated files or exfiltrate arbitrary data.
Install Mechanism
This is an instruction-only skill (no install spec executed by the platform). The skill's metadata suggests installing a specific npm package or using npx, which is reasonable for a CLI client. No third‑party download URLs, extract steps, or nonstandard install locations are present.
Credentials
The document correctly requires an API key for use, explains dlazy auth and optional DLAZY_API_KEY per-invocation, and points to the config file location (~/.dlazy/config.json). The registry's declared required env vars list is empty; this is not harmful but is a mild discrepancy because the instructions do reference DLAZY_API_KEY and a stored config file — users should expect to provide an API key to use the skill.
Persistence & Privilege
Skill is not marked always:true and has no install-time persistence imposed by the platform. The CLI itself stores a user API key in the user's home config directory, which is normal for a CLI that needs credentials.
Assessment
This skill is a thin client for the dLazy image API and appears coherent. Before installing or using it: (1) review the upstream GitHub/npm package (@dlazy/cli@1.0.6) if you plan to globally install it; (2) be aware that any local images you pass will be uploaded to dLazy's oss.dlazy.com storage and generated outputs are hosted there — do not upload sensitive or private images you don't want sent to a third party; (3) you will need an API key (stored under ~/.dlazy/config.json or provided via DLAZY_API_KEY); rotate/revoke that key from the dLazy dashboard if needed. The only small inconsistency is that the registry metadata lists no required env vars while the docs reference DLAZY_API_KEY and a config file, which is informational rather than malicious.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🤖 Clawdis
Binsnpm, npx
latestvk9753x6dwgyp1wtp6fx911y1gx85nync
124downloads
0stars
5versions
Updated 23h ago
v1.0.5
MIT-0

dlazy-gpt-image-2

English · 中文

GPT Image 2 model for text-to-image and image editing. Supports generating images from text as well as editing and synthesizing images with reference inputs. GPT Image 2 图像生成与编辑模型。支持文生图,以及通过提供参考图进行图像编辑和合成。

Trigger Keywords

  • gpt-image-2

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/cli@1.0.6 <command>

Or, if you prefer a global install, the skill's metadata.clawdbot.install field declares the exact pinned version (npm install -g @dlazy/cli@1.0.6). 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: Execute dlazy gpt-image-2 to get the result.

dlazy gpt-image-2 -h

Options:
  --prompt <prompt>                    Prompt
  --images <images...>                 Images [image: url or local path] (max 5)
  --size <size>                        Size [default: auto] (choices: "1024x1024", "1536x1024", "1024x1536", "2048x2048", "2048x1152", "3840x2160", "2160x3840", "auto")
  --format <format>                    Format [default: jpeg] (choices: "jpeg", "png", "webp")
  --quality <quality>                  Fields.quality [default: medium] (choices: "low", "medium", "high")
  --input <spec>                       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 <seconds>                  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"
    ]
  }
}

Examples

dlazy gpt-image-2 --prompt 'prompt content' 

Error Handling

CodeError TypeExample Message
401Unauthorized (No API Key)ok: false, code: "unauthorized", message: "API key is missing or invalid"
501Missing required parametererror: required option '--prompt <prompt>' not specified
502Local file read errorError: Image file/Video file not found: C:\path\to\your\file
503API request failed (no balance)ok: false, code: "insufficient_balance"
503API request failed (server error)HTTP status code error (500 server crash)
504Asynchronous 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 <key> and resume the task.

Tips

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

Comments

Loading comments...