📦 seedance-video — 使用Seedance 2.0生成AI视频
v1.0.0在SkillBoss平台上使用Seedance 2.0从文本提示或图像生成AI视频的技能。适合制作短广告、产品演示、发布片段和社交媒体视频。支持5、10、15秒三种时长,16:9、9:16、3:4、4:3四种宽高比,最多4张参考图像引导生成。按需付费,无需管理单独的提供商账户。
0· 21·0 当前·0 累计
安全扫描
OpenClaw
可疑
medium confidence该技能基本一致(将请求路由到SkillBoss进行Seedance视频生成),但运行时指令期望有SkillBoss API key,即使注册表元数据没有列出所需凭证——这个重要遗漏可能表明配置草率或存在隐藏期望。
评估建议
该技能看起来是其声称的功能(Seedance视频生成的SkillBoss前端),但SKILL.md示例使用环境变量SKILLBOSS_API_KEY进行授权,而注册表元数据却没有列出所需的环境变量。在安装或启用之前:- 确认必须在哪里以及如何提供SkillBoss API密钥(SKILLBOSS_API_KEY)。元数据应明确列出此必需凭证;如果缺失,请要求发布者修复清单。- 请记住,生成的请求和任何参考图像将被发送到https://api.skillboss.co——除非您信任SkillBoss的处理和计费方式,否则不要上传敏感图像或机密文本。- 验证技能的发布者/来源(提供了主页,但存储库/来源未知)。优先选择具有已发布存储库或已验证发布者的技能。- 在生成视频之前,请检查SkillBoss的按秒计费定价/账单。- 由于这只是指令形式的技能(没有代码可审计),将其视为比已发布开源技能更高的风险——如果您需要更高的保证,请要求发布者声明所需的环境变量并提供公共存储库或其他来源证明。...详细分析 ▾
⚠ 用途与能力
技能的声明目的(Seedance/SkillBoss视频生成)与指令相符(POST到https://api.skillboss.co/v1/run,模型为seedance/seedance-2.0)。然而,示例和代理指导假设使用环境变量SKILLBOSS_API_KEY进行授权,而注册表元数据却没有声明所需的环境变量——这种不匹配是出乎意料且有问题的。
ℹ 指令范围
SKILL.md保持主题聚焦:它描述了向SkillBoss形成POST请求、支持的选项和预期输出。它没有指导读取无关的本地文件或不寻常的系统路径。唯一的作用域问题是示例和指导中隐含使用SKILLBOSS_API_KEY,尽管元数据中没有声明。
✓ 安装机制
纯指令形式的技能,没有安装规范和代码文件——安装风险最低。没有下载、解压的存档或软件包安装需要评估。
⚠ 凭证需求
该技能确实需要一个API密钥来调用SkillBoss,但技能元数据没有声明任何所需的环境变量。要求SKILLBOSS_API_KEY(在示例中显示)但未声明是不一致的。没有请求无关的凭证,这是好的,但这种遗漏降低了透明度。
✓ 持久化与权限
always为false且该技能可由用户调用;它不请求永久/自动包含或尝试修改其他技能的配置。允许自主调用(平台默认),但未与其他高风险标志结合使用。
安全有层次,运行前请审查代码。
运行时依赖
无特殊依赖
版本
latestv1.0.02026/4/14
Seedance Video技能初始版本发布,适用于SkillBoss。使用Seedance 2.0从文本提示或图像生成短格式AI视频。支持5、10和15秒的剪辑时长。可选择16:9、9:16、3:4和4:3宽高比。支持最多4张图像的参考图像引导视频生成。按需付费;无需管理单独的提供商账户。返回视频URL,汇总关键参数,并处理错误并提供重试建议。
● 无害
安装命令
点击复制官方npx clawhub@latest install modesty-seedance-video
镜像加速npx clawhub@latest install modesty-seedance-video --registry https://cn.longxiaskill.com
技能文档
Use this skill to generate AI videos from text prompts or images using Seedance 2.0 on SkillBoss.
When to Use This Skill
Use this skill when you need to:
- Generate short-form AI videos from text prompts
- Create product demos or launch clips
- Produce social media videos (Reels, Shorts, TikTok)
- Use reference images to guide video generation
Requirements
- SkillBoss API key (set as
SKILLBOSS_API_KEYenvironment variable)
Supported Parameters
| Parameter | Type | Description | Options |
|---|---|---|---|
prompt | string | Text description of the video to generate | Required |
duration | integer | Video length in seconds | 5, 10, 15 |
aspect_ratio | string | Video aspect ratio | 16:9, 9:16, 3:4, 4:3 |
reference_images | array | Up to 4 image URLs to guide generation | Optional |
Usage Examples
Generate Video from Text Prompt
{
"prompt": "A serene mountain lake at sunrise with gentle ripples",
"duration": 10,
"aspect_ratio": "16:9"
}
Generate Video with Reference Images
{
"prompt": "Product rotating in 3D space",
"duration": 15,
"aspect_ratio": "9:16",
"reference_images": [
"https://example.com/product-front.jpg",
"https://example.com/product-side.jpg"
]
}
Output
The skill returns:
video_url: Direct URL to the generated videoduration: Actual video durationaspect_ratio: Video aspect ratiostatus: Generation status (completed, processing, failed)error: Error message if failed (with retry suggestions)
Error Handling
If video generation fails:
- Check if the prompt is too long or contains invalid characters
- Verify reference image URLs are accessible
- Ensure aspect ratio matches supported options
- Retry with simplified prompt
Pricing
Pay-as-you-go through SkillBoss. Check SkillBoss documentation for current rates.
Notes
- Videos are generated asynchronously
- Processing time varies based on queue and video complexity
- Reference images help guide style and content but don't guarantee exact matches
- Generated videos are hosted on SkillBoss servers