← 返回 Skills 市场
85
总下载
0
收藏
0
当前安装
7
版本数
在 OpenClaw 中安装
/install next-video-gen
功能描述
豆包 Next Video Gen AI 视频/图片生成 via 火山引擎方舟平台。支持文生图、文生视频、图生视频、素材生视频,集成 Seedance 系列模型。
安全使用建议
This package appears to be what it claims (a Volcengine Seedance-based media generator) and only needs your DOUBAO_API_KEY, but there are a few packaging inconsistencies you should check before installing:
- Verify API key scope and rotate/revoke it if you later remove the skill. Only provide DOUBAO_API_KEY if you trust the source.
- The registry metadata omitted the required env/binary declarations that appear in SKILL.md and scripts (node required, DOUBAO_API_KEY required). Treat this as a packaging oversight but confirm you are comfortable giving the skill a key.
- Installer (bin/cli.js) runs local commands to find the skills directory and will copy files into ~/.openclaw/skills (or a directory you specify). Review the files locally (SKILL.md, scripts/, bin/) before running the installer and avoid running unreviewed installers as root.
- The scripts will fetch user-supplied URLs (images/videos/audio) and save generated outputs to ~/Videos/next-video-gen/ by default — be mindful of what URLs you provide and where output is written.
- The installer uses child_process (execSync/spawnSync) for detection; this is normal for installers but means it will execute shell commands locally — inspect the script if you have doubts.
If you want higher assurance, ask the publisher to fix the metadata mismatch (declare node and DOUBAO_API_KEY in the registry fields) or run the scripts in an isolated environment (container or dedicated VM) and inspect the code prior to providing your API key.
功能分析
Type: OpenClaw Skill
Name: next-video-gen
Version: 1.0.6
The skill bundle is a legitimate tool for generating AI images and videos using the Volcengine Ark (Seedance) API. The scripts (seedance-gen.sh, run-gen.js) and utilities (http-request.js, download-file.js) are well-structured, use standard Node.js modules for networking, and interact only with official API endpoints. The installer (bin/cli.js) follows standard practices by detecting skill directories and optionally configuring the required API key in shell profile files with user consent.
能力标签
能力评估
Purpose & Capability
Functionality (text→image/video, image→video, video→video) matches the description and all network calls target Volcengine Ark endpoints (ark.cn-beijing.volces.com). Requesting DOUBAO_API_KEY is appropriate for this purpose. However, the registry header lists no required env/bins while SKILL.md and the scripts require node and DOUBAO_API_KEY — this metadata mismatch is inconsistent.
Instruction Scope
SKILL.md and the scripts guide the agent to copy files into a skills directory, check dependencies, prompt for API key, call the Volcengine APIs, and download generated media to ~/Videos/next-video-gen/. The runtime instructions do not ask for unrelated system secrets or to read arbitrary local files, but the installer will probe for an OpenClaw skills path (running 'which/where' and optionally calling openclaw CLI) and will copy files into user directories. The scripts also accept user-supplied remote URLs (images/videos/audio) which will be fetched — expected but worth noting.
Install Mechanism
There is no formal install spec in registry metadata; instead an included CLI installer (bin/cli.js) copies files into the user's skills directory. All code is included in the package (no downloads from arbitrary third-party URLs during install). The installer uses child_process execSync/spawnSync to probe the environment (e.g., checking openclaw); this is expected for an installer but increases the surface you should trust. No remote install/extraction from unknown hosts was observed.
Credentials
Runtime requires only DOUBAO_API_KEY (primaryEnv) which is proportionate to calling Volcengine Ark APIs. However, the registry metadata at the top of the package listing states 'Required env vars: none' while SKILL.md metadata and code require DOUBAO_API_KEY — this discrepancy is misleading. The scripts also recommend/expect curl and jq (installer checks for them), but the Node scripts implement HTTP/downloads themselves, so the curl/jq requirement appears inconsistent.
Persistence & Privilege
Skill is not forced 'always' and does not request elevated or cross-skill configuration changes. The installer will copy files into a per-user skills directory and set execute permissions on its own scripts — normal for a skill installer.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install next-video-gen - 安装完成后,直接呼叫该 Skill 的名称或使用
/next-video-gen触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.6
- 补充“字幕处理”说明:目前 API 无原生字幕参数,如需字幕可在 prompt 描述中注明字幕内容,由模型根据描述实现。
- 其余文档与功能保持一致,无破坏性变更。
v1.0.5
- 新增参数 --enable-audio,用于启用视频音频输出,替代原用法
- 文档中参数说明由 --audio 改为 --enable-audio,明确区分与参考音频(--audio <url>)
- 文档及脚本用法保持对旧版 --audio 参数的兼容说明
- 其余功能与接口无变化,仅参数命名与使用方式更规范
v1.0.4
- 改进文生视频音频参数,--audio 替换原 --no-audio;用法和参数文档均已更新
- 修正 run-gen.js 脚本,--audio 用法更直观,兼容带参和不带参形式
- 文档示例全部更新为新版 --audio 用法,便于理解
- 细化参数说明,清理旧用法描述(如 --no-audio)
- 保持 Bash 脚本兼容,未影响现有功能
v1.0.3
- Updated output examples and delivery standards to clarify that online links are only valid for a short time and users should download promptly.
- Changed wording in protocol and delivery sections to emphasize the temporary validity of generated image and video URLs.
- Added a prominent note explaining that online links contain temporary signatures, usually valid for 24 hours, and must be regenerated after expiry.
- No core parameter or usage changes; documentation improved for user clarity around file downloads.
v1.0.2
- Added Node.js script usage instructions for cross-platform support (run-gen.js).
- Clarified video/audio option (`--no-audio` now default "no", use `--no-audio false` to enable audio).
- Bash script is now documented as "legacy, compatible".
- Documented a new error code for Windows HTTPS issues and suggested retrying.
- Minor improvements to examples and default spec presentation in output.
v1.0.1
- 新增脚本 scripts/run-gen.js,为功能扩展做准备
- 其他未变更
v1.0.0
Initial release of next-video-gen:
- Provides AI-based image and video generation via Huoshan Ark Platform using Seedance models.
- Supports text-to-image, text-to-video, image-to-video, and video-to-video modes.
- Exposes configurable parameters for quality, aspect ratio, watermark, duration, and model selection.
- Includes a bash+node script for command-line generation with clear output protocol.
- Handles and reports progress, errors, and result details—including online links and local file locations.
- Guides users to configure required DOUBAO_API_KEY on first use.
元数据
常见问题
Next Video Gen 是什么?
豆包 Next Video Gen AI 视频/图片生成 via 火山引擎方舟平台。支持文生图、文生视频、图生视频、素材生视频,集成 Seedance 系列模型。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 85 次。
如何安装 Next Video Gen?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install next-video-gen」即可一键安装,无需额外配置。
Next Video Gen 是免费的吗?
是的,Next Video Gen 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Next Video Gen 支持哪些平台?
Next Video Gen 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Next Video Gen?
由 Venn(@vennduan)开发并维护,当前版本 v1.0.6。
推荐 Skills