← Back to Skills Marketplace
dlazyai

Dlazy Video Generate

by dlazy · GitHub ↗ · v1.0.4 · MIT-0
cross-platform ✓ Security Clean
446
Downloads
0
Stars
1
Active Installs
5
Versions
Install in OpenClaw
/install dlazy-video-generate
Description
Video generation skill. Automatically selects the best dlazy CLI video model based on the prompt.
README (SKILL.md)

dlazy-video-generate

English · 中文

Video generation skill. Automatically selects the best dlazy CLI video model based on the prompt.

Trigger Keywords

  • generate video
  • text to video
  • animate 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

This skill handles all video generation requests by selecting the best dlazy video model.

Available Video Models

  • 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.

CRITICAL INSTRUCTION FOR AGENT:

  1. Select the most appropriate video model.
  2. Run `dlazy \x3Cmodel_name> -h` to check parameters.
  3. Execute the command.

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 around the dlazy CLI and appears internally consistent. Before installing or running it: 1) Review the @dlazy/cli source on GitHub (metadata points to it) if you plan to npm install globally; consider using `npx` to avoid a persistent install. 2) Be aware that any local images/videos you pass will be uploaded to dlazy's storage (oss.dlazy.com) and outputs are hosted there. 3) The CLI stores your API key at ~/.dlazy/config.json (or %USERPROFILE%\.dlazy\config.json on Windows); rotate/revoke the key if needed and avoid sharing it. 4) The SKILL.md versions show minor mismatches (skill file vs registry vs pinned CLI); this is likely an editorial issue but you may want to confirm you’re using the intended CLI version. 5) As with any tool that runs commands locally, only allow it if you trust the dlazy package and account billing implications.
Capability Analysis
Type: OpenClaw Skill Name: dlazy-video-generate Version: 1.0.4 The skill is a legitimate integration for the dLazy video generation service, providing a wrapper around the `@dlazy/cli` npm package. It includes clear instructions for the AI agent to select models, check parameters via help commands, and handle common API errors (e.g., authentication or balance issues). While the skill involves uploading local files to `oss.dlazy.com` and storing an API key in `~/.dlazy/config.json`, these behaviors are explicitly documented and necessary for the stated functionality of a cloud-based video generation tool.
Capability Tags
requires-sensitive-credentials
Capability Assessment
Purpose & Capability
Name/description match the content: this is a client for the dlazy video generation CLI. Declared required binaries (npm, npx) make sense because the skill references installing/running the npm-distributed @dlazy/cli package. No unrelated credentials, binaries, or config paths are requested.
Instruction Scope
SKILL.md instructs the agent to choose a dlazy model, run `dlazy <model> -h` to inspect parameters, and execute dlazy commands. It explicitly documents that prompts and local media are uploaded to dlazy endpoints. The instructions do not ask the agent to read unrelated files or exfiltrate data beyond the documented uploads. They do require the user to provide an API key (or set DLAZY_API_KEY) which is appropriate for a cloud generation client.
Install Mechanism
This is instruction-only (no install spec in registry), but metadata recommends installing `@dlazy/[email protected]` (or using npx). That is a common, low-risk pattern. As always, installing a global npm package pulls external code — the recommendation to review the GitHub repo before installing is appropriate. Minor inconsistency: SKILL.md metadata shows skill version 1.0.2 while registry lists 1.0.4; the CLI package is pinned to 1.0.6 in metadata.
Credentials
The skill does not declare required environment variables in the registry. SKILL.md notes the optional DLAZY_API_KEY or using `dlazy auth set`, which is proportional and expected for an API-backed CLI. No unrelated secrets or multiple external credentials are requested.
Persistence & Privilege
always is false and autonomous invocation is not disabled (the platform default). The skill does not request elevated or persistent system-wide privileges beyond installing a standard npm CLI if the user chooses to. It stores API key in the user's config directory as expected for a CLI.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install dlazy-video-generate
  3. After installation, invoke the skill by name or use /dlazy-video-generate
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.4
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.3
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.2
- Updated agent instruction: now directs to save the API key immediately with dlazy auth set <key> after user provides it. - Minor clarification in the agent error handling instruction for unauthorized API key cases.
v1.0.1
- Added a new "Authentication" section with instructions for setting and obtaining the dLazy API key. - Updated CLI dependency to use @dlazy/[email protected]. - Improved documentation for clearer user guidance on API key configuration.
v1.0.0
- Initial release of the dlazy-video-generate skill. - Automatically selects the optimal dlazy CLI video model based on the input prompt. - Supports a range of video models for cinema-quality, narrative, quick, and image-to-video tasks. - Provides error handling for common issues, including missing API key and insufficient credits, with clear user guidance. - Includes easy installation instructions and usage tips.
Metadata
Slug dlazy-video-generate
Version 1.0.4
License MIT-0
All-time Installs 1
Active Installs 1
Total Versions 5
Frequently Asked Questions

What is Dlazy Video Generate?

Video generation skill. Automatically selects the best dlazy CLI video model based on the prompt. It is an AI Agent Skill for Claude Code / OpenClaw, with 446 downloads so far.

How do I install Dlazy Video Generate?

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

Is Dlazy Video Generate free?

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

Which platforms does Dlazy Video Generate support?

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

Who created Dlazy Video Generate?

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

💬 Comments