← 返回 Skills 市场
dlazyai

Dlazy Generate

作者 dlazy · GitHub ↗ · v1.0.6 · MIT-0
cross-platform ✓ 安全检测通过
487
总下载
1
收藏
1
当前安装
7
版本数
在 OpenClaw 中安装
/install dlazy-generate
功能描述
A comprehensive generation skill. Can generate images, videos, and audio by automatically selecting the appropriate dlazy CLI model.
使用说明 (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.

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

Dlazy Generate 是什么?

A comprehensive generation skill. Can generate images, videos, and audio by automatically selecting the appropriate dlazy CLI model. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 487 次。

如何安装 Dlazy Generate?

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

Dlazy Generate 是免费的吗?

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

Dlazy Generate 支持哪些平台?

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

谁开发了 Dlazy Generate?

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

💬 留言讨论