Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

dlazy-generate懒惰生成

Agent Skill

dlazy-generate 用于处理图像、截图、视觉识别或图片素材相关工作,适合在 OpenClaw 中需要让 Agent 分析图片、整理视觉素材或辅助图像流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

23,138

周安装

936

GitHub Stars

1

下载量

7,263
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:dlazy-generate(懒惰生成)
来源仓库:https://github.com/dlazyai/dlazy-generate
安装命令:
openclaw skills install dlazy-generate
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install dlazy-generate

简介

综合生成技能。可以通过自动选择适当的 dlazy CLI 模型来生成图像、视频和音频。

SKILL.md

name
dlazy-generate
version
1.1.0
description
A comprehensive generation skill. Can generate images, videos, and audio by automatically selecting the appropriate dlazy CLI model.
metadata

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. The recommended way to authenticate is:

dlazy login

This runs a device-code flow (also works in remote shells) and automatically saves your API key to the local CLI config — no manual copy/paste required.

Alternative: Set the Key Manually

If you already have an API key, you can save it directly:

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 Manually

  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.9 <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.9). 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 (files.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 files.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.

Piping Between Commands

Every dlazy invocation prints a JSON envelope on stdout. Any flag value can be a pipe reference that pulls from the upstream command's envelope, so you can chain steps without copying URLs by hand.

ReferenceResolves to
-Upstream's natural value for this field (scalar or array)
@NThe N-th output's primary value (e.g. @0 = first output url)
@N.<jsonpath>Drill into the N-th output (@0.url, @1.meta.fps)
@*All outputs' primary values as an array
@stdinThe whole upstream JSON envelope
@stdin:<jsonpath>Jsonpath into the whole envelope (@stdin:result.outputs[0].url)

Examples

# Generate an image and feed its url straight into image-to-video
dlazy seedream-4.5 --prompt "a red fox in snow" \
  | dlazy kling-v3 --image - --prompt "fox starts running"

# Generate an image, then add TTS narration over a still
dlazy seedream-4.5 --prompt "lighthouse at dawn" \
  | dlazy keling-tts --text "Welcome to the coast." --image @0.url

# Fan-out: pass every upstream output url into a batch step
dlazy seedream-4.5 --prompt "city skyline" --n 4 \
  | dlazy superres --images @*
Required flags can be entirely sourced from the pipe — --field - satisfies the requirement when an upstream value exists. If stdin is empty, the CLI fails with code: "no_stdin".

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 <model_name> -h\ to check the required parameters for that specific model.
  4. Execute the command (e.g., \dlazy seedream-4.5 --prompt "..."\).

Error Handling

CodeError TypeExample Message
401Unauthorized (No API Key)\ok: false, code: "unauthorized", message: "API key is missing or invalid"\
501Missing required parameter\error: required option '--prompt <prompt>' not specified\
502Local file read error\Error: Image file/Video file not found: C:\\path\\ o\\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.

适合场景

01

文本生成图片

02

图片风格化

03

产品图和创意图

04

需要 FLUX 模型时

能力概览

能力 1

调用 FLUX 图像模型

能力 2

支持文本生图和图像改写

能力 3

覆盖 LoRA 或风格适配

能力 4

适合创意视觉生成

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

98.04%
按下载量换算7,121

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills