← Back to Skills Marketplace
dlazyai

Dlazy Generate

by dlazy · GitHub ↗ · v1.0.6 · MIT-0
cross-platform ✓ Security Clean
487
Downloads
1
Stars
1
Active Installs
7
Versions
Install in OpenClaw
/install dlazy-generate
Description
A comprehensive generation skill. Can generate images, videos, and audio by automatically selecting the appropriate dlazy CLI model.
README (SKILL.md)

dlazy-generate

English · 中文

A comprehensive generation skill. Can generate images, videos, and audio by automatically selecting the appropriate dlazy CLI model.

Trigger Keywords

  • generate
  • create image, video, audio
  • multimodal generation

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

This is a comprehensive skill that routes generation requests to the appropriate dlazy model based on the user's intent.

Available Models by Category

Image Generation:

  • dlazy seedream-4.5: High-quality realism/posters.
  • dlazy seedream-5.0-lite: Fast, low-cost sketches.
  • dlazy banana2, dlazy banana-pro: General text-to-image.
  • dlazy grok-4.2: Minimalist.
  • dlazy recraft-v3: Stylized (illustration).
  • dlazy recraft-v3-svg: SVG/vector.
  • dlazy mj.imagine: Midjourney style.
  • dlazy kling-image-o1, dlazy viduq2-t2i, dlazy jimeng-t2i: Other specific high-quality image models.

Video Generation:

  • dlazy veo-3.1, dlazy veo-3.1-fast: High-quality cinematic sequences.
  • dlazy sora-2, dlazy sora-2-pro: Narrative clips.
  • dlazy kling-v3, dlazy kling-v3-omni: General short clips.
  • dlazy seedance-1.5-pro: Narrative shorts with transitions.
  • dlazy wan2.6-r2v, dlazy wan2.6-r2v-flash: General/fast video production.
  • dlazy viduq2-i2v, dlazy jimeng-i2v-first, dlazy jimeng-i2v-first-tail, dlazy jimeng-dream-actor, dlazy jimeng-omnihuman-1.5: Image-to-video, digital human, action transfer.

Audio Generation:

  • dlazy gemini-2.5-tts, dlazy doubao-tts, dlazy keling-tts: Text-to-speech.
  • dlazy suno.music: Music generation.
  • dlazy keling-sfx: Sound effects.

CRITICAL INSTRUCTION FOR AGENT:

  1. Determine the media type (image, video, or audio) requested by the user.
  2. Select the most appropriate model from the list above.
  3. Run `dlazy \x3Cmodel_name> -h` to check the required parameters for that specific model.
  4. Execute the command (e.g., `dlazy seedream-4.5 --prompt "..."`).

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 is a thin wrapper for the official dLazy CLI and behaves as described, but take these precautions before installing or using it: - The dLazy service requires an API key (stored in ~/.dlazy/config.json or provided via DLAZY_API_KEY). Although the registry metadata lists no required env vars, the SKILL.md makes clear a key is needed — provide only keys you trust and limit their scope if possible. - Any local images/videos/audio you pass will be uploaded to oss.dlazy.com. Do not upload sensitive or private files unless you accept that they will go to dLazy's storage. - Prefer using the npx invocation for one-off use (npx @dlazy/[email protected]) if you don't want a global install. Review the upstream GitHub repo and npm package (both referenced in SKILL.md) before installing. - Confirm billing/quotas and that you understand the service's privacy/retention policy (the skill references account credits and endpoints). Rotate or revoke keys you no longer use. Overall the skill is internally consistent with its stated purpose; the only real issues are small metadata omissions and the usual risks of uploading data to a cloud generation service.
Capability Analysis
Type: OpenClaw Skill Name: dlazy-generate Version: 1.0.6 The dlazy-generate skill is a legitimate wrapper for the dLazy CLI, providing multimodal generation capabilities (image, video, audio) via the dlazy.com API. It follows standard SaaS integration patterns, including API key management in a local config file (~/.dlazy/config.json) and uploading media to a dedicated storage endpoint (oss.dlazy.com). The instructions in SKILL.md are transparent, guiding the agent on model selection and error handling without any evidence of malicious intent, data exfiltration, or prompt injection.
Capability Tags
requires-sensitive-credentials
Capability Assessment
Purpose & Capability
The skill is a wrapper around the dLazy CLI for image/video/audio generation. Requiring npm/npx (for installing or running the pinned @dlazy/cli) is reasonable. The metadata lists api.dlazy.com and oss.dlazy.com which aligns with the described functionality. Minor mismatch: registry 'Required env vars: none' but the SKILL.md documents using a DLAZY_API_KEY (or dlazy auth set) — the API key is required by the service even if not marked as a required env var in the registry metadata.
Instruction Scope
The SKILL.md instructs the agent to invoke the dlazy CLI (e.g., run dlazy <model> -h and execute model commands). It explicitly states that local media files provided by the user will be uploaded to oss.dlazy.com and that API calls go to api.dlazy.com. The instructions do not ask the agent to read unrelated system files or other credentials, nor to post data to unexpected endpoints. This scope is consistent with a CLI client for a cloud generation service.
Install Mechanism
No code files are bundled; the skill recommends installing the official npm package @dlazy/[email protected] or using npx for on-demand execution. Installing from npm/npx is a standard, low-to-moderate risk mechanism; the SKILL points to the GitHub repo and the npm package which are appropriate provenance signals. No arbitrary download URLs or extracted archives are used.
Credentials
The functionality legitimately requires a dLazy API key (stored in ~/.dlazy/config.json or provided via DLAZY_API_KEY). The registry metadata did not declare a required env var, which is a small inconsistency but not a functional red flag. The skill does not request unrelated credentials or unusual system-level paths.
Persistence & Privilege
The skill is not always-enabled and does not request elevated or cross-skill persistence. It instructs use of the CLI which will store credentials in the user's config (~/.dlazy/config.json) — this is normal and limited to the dlazy client.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install dlazy-generate
  3. After installation, invoke the skill by name or use /dlazy-generate
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.6
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.5
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.4
- Updated version to 1.0.4. - Documentation files (SKILL.md, SKILL-en.md, SKILL-cn.md) updated with minor changes and maintenance. - No functional changes to the skill logic.
v1.0.3
- Updated CLI dependency to @dlazy/[email protected] for improved compatibility. - No feature or interface changes; documentation refreshed for consistency.
v1.0.2
- Added a new "Authentication" section with step-by-step instructions for obtaining and configuring your dlazy API key. - Clarified that all requests require the API key via CLI configuration. - No changes to model support, trigger keywords, or error handling. - Updated documentation in all supported languages.
v1.0.1
- Removed voice cloning audio models (`dlazy vidu-audio-clone`, `dlazy kling-audio-clone`) from documentation. - Minor update to API key instruction wording for clarity. - Documentation updated in all localized SKILL*.md files for consistency.
v1.0.0
Initial release: Comprehensive generation skill for images, video, and audio via dlazy CLI. - Automatically selects the appropriate dlazy CLI model based on user intent for images, videos, or audio. - Lists and describes available models for each media type. - Includes clear instructions for running commands and checking model parameters. - Documents detailed error handling and critical instructions for agent response to user issues.
Metadata
Slug dlazy-generate
Version 1.0.6
License MIT-0
All-time Installs 1
Active Installs 1
Total Versions 7
Frequently Asked Questions

What is Dlazy Generate?

A comprehensive generation skill. Can generate images, videos, and audio by automatically selecting the appropriate dlazy CLI model. It is an AI Agent Skill for Claude Code / OpenClaw, with 487 downloads so far.

How do I install Dlazy Generate?

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

Is Dlazy Generate free?

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

Which platforms does Dlazy Generate support?

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

Who created Dlazy Generate?

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

💬 Comments