安全扫描
OpenClaw
可疑
medium confidence该技能的运行指令与Seedance/AceDataCloud视频生成集成大致匹配,但包元数据缺少必需的API令牌,且存在少量差距(未披露的pip依赖和未知发布者),降低了信心。
评估建议
该技能似乎是一个围绕AceDataCloud的Seedance API的直接包装,但在安装前应解决几个不匹配项:(1) SKILL.md指出必须设置ACEDATACLOUD_API_TOKEN,但注册元数据未列出必需的环境变量——假设令牌是必需的,确认其范围/权限;(2) 文档建议安装第三方pip包(mcp-seedance)——在运行pip之前验证包的发布者、源存储库和PyPI页面;(3) 该技能的源/主页未知,注册所有者ID不透明——更喜欢来自已验证发布者的技能;(4) 图像到视频功能动画化上传图像中的人员——考虑任何主题的隐私和同意;(5) 使用最低权限、可撤销的API令牌(避免在测试期间使用广泛的生产凭证)。如果发布者可以提供AceDataCloud API和mcp-seedance包的权威文档或公共存储库,那将增加信心;否则,谨慎进行(或将其视为不可信任的代码)。...详细分析 ▾
ℹ 用途与能力
SKILL.md describes a Seedance (ByteDance) video generation integration that uses an AceDataCloud API token — that credential is appropriate for the stated purpose. However, the registry metadata at the top of the submission lists no required environment variables or primary credential while the SKILL.md explicitly says ACEDATACLOUD_API_TOKEN is required; this metadata mismatch is an incoherence.
✓ 指令范围
The instructions are narrowly scoped to: export an ACEDATACLOUD_API_TOKEN, call the AceDataCloud API endpoints (api.acedata.cloud), poll tasks, and optionally install/use the mcp-seedance helper. The instructions do not ask the agent to read unrelated files, system credentials, or send data to third-party endpoints beyond the named AceDataCloud domains.
ℹ 安装机制
There is no install spec in the registry (instruction-only), but SKILL.md recommends 'pip install mcp-seedance' and references a hosted MCP endpoint. The absence of an install spec means the skill won't automatically install anything, but users/agents following the doc would install a third-party pip package — verify that package origin and contents before installing.
⚠ 凭证需求
The only environment variable the instructions require is ACEDATACLOUD_API_TOKEN, which is proportional to the task. The concern is that the skill manifest/registry metadata does not declare this required env var or a primary credential, creating ambiguity about what credentials will actually be requested at runtime and by whom.
✓ 持久化与权限
The skill does not request always:true, does not claim to modify other skills or system settings, and is user-invocable. Autonomous invocation is allowed by default but is not combined with other high-privilege requests here.
安全有层次,运行前请审查代码。
运行时依赖
无特殊依赖
版本
latestv1.0.02026/3/22
Seedance视频技能v1.0.0初始版本发布:- 使用Seedance(字节跳动)通过AceDataCloud API生成AI舞蹈和动作视频。- 支持文本到视频和图像到视频动画工作流。- 多个视频模型可用,配置分辨率、时长(2-12秒)和服务等级。- 需要ACEDATACLOUD_API_TOKEN进行身份验证。- 支持任务轮询;显式成功/失败状态处理。- 提供MCP服务器集成和工具使用选项。
● Pending
安装命令 点击复制
官方npx clawhub@latest install acedatacloud-seedance-video
镜像加速npx clawhub@latest install acedatacloud-seedance-video --registry https://cn.clawhub-mirror.com
技能文档
Seedance 视频生成
通过AceDataCloud的Seedance(字节跳动)API生成AI舞蹈和动作视频。认证
export ACEDATACLOUD_API_TOKEN="your-token-here"
快速开始
curl -X POST https://api.acedata.cloud/seedance/videos \
-H "Authorization: Bearer $ACEDATACLOUD_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"prompt": "a dancer performing contemporary ballet in a misty forest", "model": "seedance-1.0", "wait": true}'
模型
| 模型 | 最适合 | |-------|----------| |seedance-1.0 | 通用运动/舞蹈视频 |
| seedance-1.0-lite | 更快、更轻的生成 |
| seedance-1.0-pro | 更高质量的输出 |
| seedance-1.5-pro | 最新模型,最佳质量 |
| seedance-acting-pro | 角色演技和表情 |
工作流
1. 文本到视频
POST /seedance/videos { "prompt": "a street dancer doing breakdancing moves in an urban setting", "model": "seedance-1.0-pro", "resolution": "1080p", "duration": 5, "service_tier": "standard" }
2. 图像到视频
将静态图像动画化为运动视频。POST /seedance/videos { "prompt": "the person starts dancing gracefully", "image_url": "https://example.com/dancer.jpg", "model": "seedance-1.5-pro", "resolution": "720p", "duration": 5 }
参数
| 参数 | 值 | 描述 | |-----------|--------|-------------| |model | 见模型表 | 使用的模型 |
| resolution | "360p", "540p", "720p", "1080p" | 输出分辨率 |
| duration | 2 – 12 | 持续时间(秒) |
| service_tier | "standard", "premium" | 质量等级(premium = 更快、更高优先级) |
| seed | 整数 | 可复制结果的种子 |
任务轮询
POST /seedance/tasks {"task_id": "your-task-id"}
状态:pending → succeeded 或 failed。
MCP 服务器
pip install mcp-seedance
或托管:https://seedance.mcp.acedata.cloud/mcp
关键工具:seedance_generate_video、seedance_generate_video_from_image
注意事项
- 持续时间范围为 2–12 秒 — 此范围外的值将失败
- 更高的分辨率(1080p)与更长的持续时间一起使用,需要显著更长的时间
premium服务等级成本更高,但生成速度更快seedance-acting-pro在面部表情和角色演技方面优于纯舞蹈- 图像到视频需要单个
image_url— 图像中的人员/主题成为动画主题 - 任务状态使用 "succeeded"(而非 "completed") — 轮询时检查此值
数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制
免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制