Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

video-intent-studio视频意图工作室

Agent Skill

用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发。它适合让 Agent 组织镜头、生成素材说明、维护合成代码或排查渲染问题。使用时需要确认分辨率、时长、素材路径和导出格式;涉及外部素材、人物肖像或商业发布时,应先核对版权授权和内容审核要求。

总安装

6,551

周安装

265

GitHub Stars

公开资料未说明

下载量

2,056
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:video-intent-studio(视频意图工作室)
来源仓库:https://github.com/xxxxxxxxxxxxxxxxxxx20gex/video-intent-studio
安装命令:
openclaw skills install video-intent-studio
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install video-intent-studio

简介

分阶段引导文本到视频生成,支持参数调整与预览。

  • 适用于复杂视频项目开发与创意迭代。
  • 从粗略想法到最终Volcengine Ark视频生成全流程支持。
  • 注意模型选择与输出质量调优。video-intent-studio 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 通过ClawHub安装,集成于OpenClaw开发系统。

SKILL.md

name
video-intent-studio
description
Guide staged text-to-video generation from a rough user idea to ranked video type options, parameter tuning, prompt preview, and final Volcengine Ark video generation via bundled helper scripts. Use when a user wants help deciding video style, duration, ratio, motion, or prompt wording before generating a video, and when a reusable multi-turn workflow with simple state tracking is needed.

Video Intent Studio

Follow a user-led workflow for video generation. Do not choose the final prompt for the user. Suggest options, keep the current prompt transparent, and ask for confirmation before generation.

Core behavior

  • Respond in the user's language. Default to Chinese if the user is writing in Chinese.
  • Keep the workflow layered: intent -> ranked video types -> parameter tuning -> prompt confirmation -> generation.
  • Present 3 to 5 options at the type-selection step. Keep the option set stable and only reorder by relevance.
  • Show the current prompt preview whenever parameters change.
  • Let the user revise or exit at every stage.
  • Keep a simple state object in memory or scratch space:
state = {
    "user_input": "",
    "selected_type": None,
    "params": {
        "duration": 8,
        "ratio": "16:9",
        "motion": "medium",
        "style": "original",
        "brightness": "normal",
        "subtitle": "off",
        "dream_filter": "off",
    },
    "final_prompt": "",
    "stage": "init",
}

Skill directory and script paths

When this SKILL.md is loaded, resolve the skill directory from the absolute path of this file.

  • Suggestion and prompt builder:

- <skill-dir>/scripts/video_agent_backend.py

  • Final generator:

- <skill-dir>/scripts/generate_ark_video.py

  • Type catalog and defaults:

- <skill-dir>/references/video-types.md

  • Usage walkthrough and examples:

- <skill-dir>/references/usage-guide.md

Use absolute paths when running the scripts.

Recommended workflow

  1. Capture the user's raw idea.

- Keep the original wording in state as user_input. - Do not rewrite it into a final prompt yet.

  1. Rank video types.

- Run:

python "<skill-dir>/scripts/video_agent_backend.py" suggest --input "user idea"

- Present the top 3 to 5 results as numbered options. - For each option, include: - type name - one-sentence use case - default duration and ratio - short reason why it matches

  1. After the user chooses a type, build a prompt preview.

- Run:

python "<skill-dir>/scripts/video_agent_backend.py" build ^
  --input "user idea" ^
  --type cinematic-story

- Show: - current prompt preview - current parameter summary - a short numbered list of tunable options

  1. If the user adjusts settings, rerun build with explicit parameters.

- Supported parameters: - --duration 5|8|10|12 - --ratio 9:16|16:9|1:1|4:3 - --motion light|medium|strong - --style realistic|anime|cinematic|original - --brightness moody|normal|bright - --subtitle off|on - --dream-filter off|on - --notes "extra user constraint"

  1. Before generation, show the final prompt and ask for confirmation.

- Use a short confirmation question such as: - "Final prompt and parameters are ready. Generate now?"

  1. After explicit confirmation, generate the video.

- Run:

python "<skill-dir>/scripts/generate_ark_video.py" ^
  --prompt "final prompt text" ^
  --output "C:\path\	o\
esult.mp4"
  1. Report success or failure clearly.

- On success, give the downloaded file path and task id if available. - On failure, bucket the issue into one of: - API key or auth problem - network or polling problem - task failed remotely - response did not include a downloadable video URL

Important implementation notes

  • The bundled generator script intentionally mirrors the existing HTTP + polling pattern already used in this workspace.
  • The current API request sends a text prompt payload only. Duration, ratio, motion, style, and other controls are encoded into the prompt text unless you later extend the API payload.
  • The generator script reads credentials from environment variables first:

- ARK_API_KEY - VOLCENGINE_ARK_API_KEY

  • Optional environment variables:

- ARK_VIDEO_MODEL - ARK_VIDEO_TASKS_URL

Conversation rules

  • Do not skip the type-selection step unless the user explicitly says they already know the type.
  • Do not ask broad open-ended questions if a numbered choice is possible.
  • If the user says "more realistic", "more cinematic", "shorter", "vertical", or similar, treat that as a parameter update and keep moving.
  • If the user says "generate", "go", or "就这样生成", show the final prompt once and ask for one explicit confirmation unless they already confirmed in the same message.

When to read references

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

74.1%
按下载量换算1,523

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills