一键导入
lightflow-video-auto-edit-plan
Use this skill when creating, running, or modifying the lightflow.video_auto_edit_plan workflow for automated video editing plans.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use this skill when creating, running, or modifying the lightflow.video_auto_edit_plan workflow for automated video editing plans.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | LightFlow Video Auto Edit Plan |
| description | Use this skill when creating, running, or modifying the lightflow.video_auto_edit_plan workflow for automated video editing plans. |
| version | 0.1.0 |
Use lightflow.video_auto_edit_plan to turn clip metadata and a human editing
brief into a structured edit decision plan. The workflow is a source-controlled
planning node; rendering can be added later as a separate ffmpeg/runtime-backed
workflow that consumes edit_plan.
lightflow.video_auto_edit_planclips: JSON array of source clip records.brief: human editing goal, story outline, or script notes.style: editing style guidance. Defaults to clean social edit.constraints: JSON delivery constraints. Defaults to {}.edit_plan: JSON edit decision plan.summary: readable planning summary.lfw run lightflow.video_auto_edit_plan \
--input clips='[{"id":"intro","path":"intro.mp4","start":0,"end":8,"tags":["hook"]}]' \
--input brief='"Cut a concise launch recap with a strong opening hook."' \
--input style='"fast social product edit"' \
--input constraints='{"aspect_ratio":"9:16","max_duration_seconds":45,"captions":true}'
Start lfw serve, then call the workflow through the shared HTTP run contract:
curl -sS -X POST http://127.0.0.1:5174/workflows/lightflow.video_auto_edit_plan/run \
-H 'content-type: application/json' \
-d '{"inputs":{"clips":[{"id":"intro","path":"intro.mp4","start":0,"end":8,"tags":["hook"]}],"brief":"Cut a concise launch recap with a strong opening hook.","style":"fast social product edit","constraints":{"aspect_ratio":"9:16","max_duration_seconds":45,"captions":true}}}'
When changing inputs, outputs, runtime behavior, or common commands, update this skill in the same change so agents can safely run and inspect the workflow.