Install
openclaw skills install @xxxxxxxxxxxxxxxxxxx20gex/video-intent-studioGuide 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.
openclaw skills install @xxxxxxxxxxxxxxxxxxx20gex/video-intent-studioFollow 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.
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",
}
When this SKILL.md is loaded, resolve the skill directory from the absolute path of this file.
<skill-dir>/scripts/video_agent_backend.py<skill-dir>/scripts/generate_ark_video.py<skill-dir>/references/video-types.md<skill-dir>/references/usage-guide.mdUse absolute paths when running the scripts.
Capture the user's raw idea.
user_input.Rank video types.
python "<skill-dir>/scripts/video_agent_backend.py" suggest --input "user idea"
python "<skill-dir>/scripts/video_agent_backend.py" build ^
--input "user idea" ^
--type cinematic-story
If the user adjusts settings, rerun build with explicit 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"Before generation, show the final prompt and ask for confirmation.
After explicit confirmation, generate the video.
python "<skill-dir>/scripts/generate_ark_video.py" ^
--prompt "final prompt text" ^
--output "C:\path\to\result.mp4"
ARK_API_KEYVOLCENGINE_ARK_API_KEYARK_VIDEO_MODELARK_VIDEO_TASKS_URL