← 返回 Skills 市场
haohao-ui

Jimeng Video Stable

作者 haohao-ui · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
201
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install jimeng-video-openclaw-stable
功能描述
在 Jimeng(即梦)里稳定执行“视频生成→等待完成→下载本地”流程。用于需要生成视频、查找最新视频、下载 mp4 的场景。内置前置健康检查、状态机执行、长等待轮询与防抖规则,降低卡住和误操作概率。
使用说明 (SKILL.md)

Jimeng Video

用于 Jimeng 视频任务,目标是稳定完成:

  • 打开视频页
  • 提交生成
  • 等待完成
  • 下载本地文件

浏览器必须走 OpenClaw 托管链路:

openclaw browser --browser-profile \x3Cprofile> \x3Csubcommand>

0) 强制执行约束(提高成功率)

A. 前置健康检查固定化(每次必做)

按顺序固定执行,不跳步:

  1. status
  2. running:falsestart
  3. open 视频页
  4. snapshot

只有上一步成功,才进入下一步。

B. 状态机执行(禁止自由发挥)

只允许按以下状态前进:

  • PRECHECK
  • MODE_GUARD
  • SUBMIT
  • POLL
  • DOWNLOAD
  • VERIFY
  • DONE / FAILED

每个状态都有:

  • 成功条件
  • 最大重试次数
  • 失败后的去向

C. 轮询策略固定

  • 轮询间隔:20–30 秒
  • 最大总等待:12 分钟
  • 到上限仍未完成:标记 FAILED(timeout),不要无限等

D. 防抖与去风暴

  • 页面未跳转时,禁止重复 open
  • 非 ref 失效场景,禁止连续 snapshot
  • 同一状态下 snapshot 连续失败 2 次,先回 PRECHECK

1) 适用场景

当用户要:

  • 生成 Jimeng 视频
  • 找到最新一条已生成视频
  • 下载视频到本地

不适用于:

  • 纯文本问答(不需要浏览器)
  • 图片生成(请用 jimeng-image

2) 入口与 profile

视频入口:

https://jimeng.jianying.com/ai-tool/home/?workspace=0&type=video

profile 选择优先级:

  1. 当前 agent 专用 profile
  2. 用户指定 profile
  3. 默认 profile
  4. openclaw(兜底)

3) 状态机定义(含成功条件和重试上限)

PRECHECK

动作:

  1. status
  2. 如未启动则 start
  3. open 视频页
  4. snapshot

成功条件:

  • snapshot 能拿到可交互页面结构

重试上限:

  • 整体最多 2 轮

失败去向:

  • 超过上限 -> FAILED(precheck)

MODE_GUARD

动作:

  • 检查当前模式是否 首尾帧
  • 若是且没有上传首尾帧图片:切换到 全能参考
  • 切换后重新 snapshot 确认

成功条件:

  • 当前模式可用于无参考图生成(通常为 全能参考

重试上限:

  • 2 次

失败去向:

  • PRECHECK 1 次
  • 再失败 -> FAILED(mode_guard)

SUBMIT

动作:

  • 填写提示词
  • 按需设置模型/时长/比例
  • 点击生成
  • snapshot 确认任务已提交

模型/时长规则(必须校验):

  • 若用户指定 Seedance 2.0 Fast,可选时长 4s~15s
  • 用户指定不支持组合时:停止并告知,不要擅自改参数

成功条件:

  • 页面出现“提交成功/排队中/生成中/可追踪任务”任一信号

重试上限:

  • 2 次

失败去向:

  • MODE_GUARD 1 次
  • 再失败 -> FAILED(submit)

POLL

动作:

  • 每 20–30 秒检查一次
  • 每轮只做一次 snapshot + 一次状态判断
  • 判断是否出现:下载 / 去查看 / 已完成卡片

成功条件:

  • 找到可下载入口(直接下载按钮或可进入详情页)

重试上限:

  • 最多 24 轮(约 12 分钟)

失败去向:

  • 超时 -> FAILED(timeout)

DOWNLOAD

动作:

  • 优先在当前页下载
  • 若当前页无下载入口,走资产页兜底:
    • 打开 https://jimeng.jianying.com/ai-tool/asset
    • 查找最新生成视频
    • 进入详情下载

成功条件:

  • 下载命令返回本地路径

重试上限:

  • 2 次

失败去向:

  • POLL 1 次再找入口
  • 再失败 -> FAILED(download)

VERIFY

动作:

  • 校验文件存在
  • 校验大小 > 0
  • 扩展名为 mp4(或页面声明的视频格式)

成功条件:

  • 文件可用且路径可回报

重试上限:

  • 1 次重新下载

失败去向:

  • FAILED(verify)

4) 标准执行模板(最小可靠版)

  1. PRECHECK
  2. MODE_GUARD
  3. SUBMIT
  4. POLL(20–30 秒间隔,最长 12 分钟)
  5. DOWNLOAD
  6. VERIFY
  7. 输出路径并 DONE

5) 故障处理

Gateway / 浏览器链路异常

  • 先回 PRECHECK
  • 不要在中间状态无限重试

Ref 失效

  • 只允许“重新 snapshot 一次”
  • 仍失败则回退上一个状态

下载入口消失

  • 直接走资产页兜底,不在当前页盲点

6) 反模式(禁止)

  • 连续重复 open 同一页面
  • 高频 snapshot(无状态变化还不断抓)
  • 忘记 running:false 就直接点页面
  • 轮询无上限,导致看起来“卡死”
  • 下载后不校验文件是否真实落地

7) 成功标准

任务完成必须回报:

  1. 本地绝对路径
  2. 文件校验结果(存在/大小/格式)
  3. 失败时给出明确失败状态(如 FAILED(timeout)
安全使用建议
This skill appears coherent for automating Jimeng video generation and downloading MP4s. Before installing: 1) Ensure the 'openclaw browser' CLI is available on the agent host (the SKILL.md requires it even though metadata doesn't list it). 2) Understand that the skill will drive a browser profile (agent or user profile) — that profile may include cookies/session tokens and could expose account access to the automation; use an isolated profile if you want to limit exposure. 3) Confirm where downloaded files will be written and that those paths are acceptable. 4) Because it's instruction-only, there's no install-time code risk, but verify the OpenClaw/browser gateway you rely on is trusted. If you need stronger assurance, ask the author to (a) declare the required binary in metadata, and (b) document expected file paths and any profile/privacy implications.
功能分析
Type: OpenClaw Skill Name: jimeng-video-openclaw-stable Version: 1.0.0 The skill bundle provides structured instructions for an AI agent to automate video generation on the Jimeng (jianying.com) platform. It defines a robust state machine (PRECHECK, SUBMIT, POLL, DOWNLOAD, VERIFY) with specific retry logic and health checks to ensure stability. There is no evidence of data exfiltration, malicious execution, or prompt injection intended to compromise the agent or host system; the logic is entirely focused on the stated purpose of browser-based video automation.
能力评估
Purpose & Capability
The name/description (stable Jimeng video generation → wait → download flow) aligns with the runtime instructions: open the Jimeng video page, submit a job, poll until completion, and download/verify the mp4. No unrelated services or credentials are requested.
Instruction Scope
The SKILL.md prescribes browser-driven automation (openclaw browser CLI calls, snapshots, clicks, downloads) which is exactly what the skill claims to do. One inconsistency: the metadata lists no required binaries, yet the instructions require the 'openclaw browser' CLI to exist on PATH. The instructions also direct downloading files to the local filesystem (expected for this purpose) — users should be aware this gives the agent access to write/read local paths.
Install Mechanism
Instruction-only skill with no install spec and no code files — minimal install risk. Nothing is downloaded or executed from external URLs by the skill itself.
Credentials
The skill requests no environment variables or credentials, which is proportional. However, it requires using a browser profile (agent/user profile, or default/openclaw), and automated use of a profile may expose cookies, auth tokens, or other sensitive local browser state to the automation runtime — this is expected for browser automation but is a privacy/security consideration the user should review.
Persistence & Privilege
The skill is not always-enabled and does not request persistent system changes. It is user-invocable and allows autonomous invocation (platform default), which is normal for skills and not by itself concerning.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install jimeng-video-openclaw-stable
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /jimeng-video-openclaw-stable 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
stability improvements, state-machine flow, retry policy
元数据
Slug jimeng-video-openclaw-stable
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Jimeng Video Stable 是什么?

在 Jimeng(即梦)里稳定执行“视频生成→等待完成→下载本地”流程。用于需要生成视频、查找最新视频、下载 mp4 的场景。内置前置健康检查、状态机执行、长等待轮询与防抖规则,降低卡住和误操作概率。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 201 次。

如何安装 Jimeng Video Stable?

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

Jimeng Video Stable 是免费的吗?

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

Jimeng Video Stable 支持哪些平台?

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

谁开发了 Jimeng Video Stable?

由 haohao-ui(@haohao-ui)开发并维护,当前版本 v1.0.0。

💬 留言讨论