/install video-storyboard-generate
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
- Sign in or create an account at dlazy.com
- Go to dlazy.com/dashboard/organization/api-key
- 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
- CLI source code: github.com/dlazyai/cli
- Maintainer: dlazyai
- npm package:
@dlazy/cli(pinned to1.0.8in this skill's install spec) - Homepage: dlazy.com
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
- Get the storyboard info
- Define the video generation pipeline
- 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:
- Replace the contents inside
{name}. Note that x / y / w / h are numbers — drop the quotes after substitution. - 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.
- 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
namestrings (原始声音,场景图,克隆声音,视频) are runtime reference keys consumed byshape://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.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install video-storyboard-generate - 安装完成后,直接呼叫该 Skill 的名称或使用
/video-storyboard-generate触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
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。