← 返回 Skills 市场
dlazyai

Video Storyboard Generate

作者 dlazy · GitHub ↗ · v1.0.4 · MIT-0
cross-platform ✓ 安全检测通过
386
总下载
0
收藏
0
当前安装
5
版本数
在 OpenClaw 中安装
/install video-storyboard-generate
功能描述
1. 获取分镜信息
使用说明 (SKILL.md)

Authentication

All requests require a dLazy API key. The recommended way to obtain and store one is the browser-based device login flow:

dlazy login

This opens dlazy.com in your browser for approval and persists the key for you. If you already have a key on hand, configure it directly:

dlazy auth set YOUR_API_KEY

The CLI saves the key to ~/.dlazy/config.json (%USERPROFILE%\.dlazy\config.json on Windows). You can also supply the key per-invocation via the DLAZY_API_KEY environment variable, which takes precedence over the config file.

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.

Storyboard Video Generation Pipeline

English · 中文

  1. Get the storyboard info
  2. Define the video generation pipeline
  3. Draw it onto the canvas

Get the Storyboard Info

Read the storyboard info from context:

  • Image / video aspect ratio: aspect_ratio, e.g., 16:9, 9:16, 4:3, 3:4, 1:1
  • Image / video resolution: resolution, e.g., 1080p, 720p
  • Use the ratio and resolution to compute the video width and height (width, height)

Extract the storyboard list:

  • Storyboard name: story_name1
  • Dialogue text: dialogue_text1
  • Video generation prompt: video_prompt1

Define the Video Generation Pipeline

The pipeline is a JSON string. Sample format below — note these requirements:

  1. Replace the contents inside {name}. Note that x / y / w / h are numbers — drop the quotes after substitution.
  2. The original audio and the scene image are shared across all storyboards (one each). The cloned audio and the video are produced per storyboard, so iterate over the storyboard list.
  3. Element x and y positions accumulate in the order of the storyboard list, with a 100-pixel gap between adjacent storyboards.
[
  {
    "type": "audio",
    "x": 0,
    "y": 0,
    "props": {
      "name": "原始声音",
      "w": "{width}",
      "h": "{height}"
    }
  },
  {
    "type": "audio",
    "x": "{width + 100}",
    "y": 0,
    "props": {
      "name": "{story_name1} 克隆声音",
      "w": "{width}",
      "h": "{height}",
      "model": "vidu-audio-clone",
      "input": {
        "prompt": "{dialogue_text1}",
        "audio_url": "shape://name:原始声音"
      }
    }
  },
  {
    "type": "image",
    "x": 0,
    "y": "{height + 100}",
    "props": {
      "name": "场景图",
      "w": "{width}",
      "h": "{height}"
    }
  },
  {
    "type": "video",
    "x": "{width + 100}",
    "y": "{height + 100}",
    "props": {
      "name": "{story_name1} 视频",
      "w": "{width}",
      "h": "{height}",
      "model": "jimeng-omnihuman-1_5",
      "input": {
        "audio": ["shape://name:{story_name1} 克隆声音"],
        "images": ["shape://name:场景图"],
        "prompt": "{video_prompt1}",
        "fast_mode": false,
        "resolution": "{resolution}"
      }
    }
  }
]

Note: The name strings (原始声音, 场景图, 克隆声音, 视频) are runtime reference keys consumed by shape://name:... lookups on the canvas; keep them in Chinese as-is so the references resolve correctly.

Draw onto the Canvas

Call the MCP drawToCanvas tool to add the pipeline defined above to the canvas.

安全使用建议
This skill is coherent but does perform networked generation via the dLazy service and will upload local media when you run commands. Before installing or running: (1) review the @dlazy/cli source on GitHub and prefer npx for one-off use instead of a global npm install; (2) be prepared to provide a dLazy API key — it will be stored in your user config (~/.dlazy/config.json) unless you pass DLAZY_API_KEY per-run; (3) avoid supplying sensitive audio/video that you don't want uploaded to a third-party service; (4) the agent is intended to execute terminal commands — only allow it to run commands you explicitly approve at each step (the skill also instructs the agent to pause and get confirmation before generation); (5) if you install the CLI, verify the npm package integrity (checksums, repo) and keep a revocable API key so you can rotate/revoke access if needed.
功能分析
Type: OpenClaw Skill Name: video-storyboard-generate Version: 1.0.4 The skill is a legitimate wrapper for the dLazy video generation service, facilitating storyboard creation via the `@dlazy/cli` tool. It provides transparent documentation regarding its API endpoints (api.dlazy.com), authentication via API keys, and source code provenance. The instructions in SKILL.md include safety-oriented constraints for the AI agent, such as requiring explicit user confirmation before executing terminal commands and prohibiting background execution in PowerShell.
能力标签
requires-sensitive-credentials
能力评估
Purpose & Capability
Name/description match the runtime behavior: the skill plans storyboard steps, builds a JSON workflow, and uses the dLazy CLI to generate media. Requiring npm/npx (for npx or npm install of @dlazy/cli) and referencing dLazy endpoints is coherent.
Instruction Scope
SKILL.md confines the agent to collecting requirements, drafting prompts, asking for confirmation, and running single synchronous dlazy CLI commands; it explicitly forbids saving prompts to files and batch command execution. It does instruct uploading local media (via the CLI) which is expected for this use-case.
Install Mechanism
No registry install spec is required by the platform (instruction-only), but metadata recommends installing or using the npm package @dlazy/[email protected] via npm/npx. Installing from npm (or using npx) is a normal, low-risk install mechanism — review the package/source before global install and prefer npx for one-off runs.
Credentials
The skill does not demand unrelated secrets. It reasonably requires a dLazy API key (config via dlazy auth set or DLAZY_API_KEY) to call the service. No other credentials or system paths are requested.
Persistence & Privilege
always:false and default autonomous invocation are used; the skill does not request elevated/system-wide persistence or modify other skills. The CLI stores the API key in a user config file (~/.dlazy/config.json), which is typical for CLIs.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install video-storyboard-generate
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /video-storyboard-generate 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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
video-storyboard-generate v1.0.2 - Updated documentation in SKILL.md, SKILL-en.md, and SKILL-cn.md files. - No logic or core workflow changes; all updates are documentation-related.
v1.0.1
- Added authentication instructions: users must now configure their dLazy API key before use. - Updated dlazy CLI dependency to version 1.0.6. - No changes to core process or triggers.
v1.0.0
video-storyboard-generate 1.0.0 - Initial release of the video-storyboard-generate skill. - Provides a step-by-step process for transforming storyboard content into a video generation workflow, designed for integration into a canvas. - Guides users through collecting storyboard information, defining a structured JSON workflow, and drawing it on the canvas. - Includes strict execution steps and interaction rules to ensure user confirmation at every stage before proceeding.
元数据
Slug video-storyboard-generate
版本 1.0.4
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 5
常见问题

Video Storyboard Generate 是什么?

1. 获取分镜信息. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 386 次。

如何安装 Video Storyboard Generate?

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

Video Storyboard Generate 是免费的吗?

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

Video Storyboard Generate 支持哪些平台?

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

谁开发了 Video Storyboard Generate?

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

💬 留言讨论