بنقرة واحدة
workflow-core
Build, edit, and run Lumen Studio workflows on the canvas.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Build, edit, and run Lumen Studio workflows on the canvas.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | workflow-core |
| description | Build, edit, and run Lumen Studio workflows on the canvas. |
| trigger | workflow, canvas, video generation, edit_workflow, run_workflow_node |
Use this skill before creating, editing, or running a Lumen Studio canvas.
A canvas is a JSON object:
{
"nodes": [
{
"id": "text-unique-id",
"type": "lumenNode",
"position": { "x": 0, "y": 0 },
"data": {
"kind": "text",
"title": "Script",
"prompt": "Write a short UGC script...",
"output": null,
"modelId": "gemini-3.5-flash",
"settings": {},
"status": "idle",
"error": null,
"progress": 0
}
}
],
"edges": [
{ "id": "edge-id", "source": "text-unique-id", "target": "image-unique-id", "type": "lumenSmooth", "data": {} }
]
}
Supported node kinds: text, image, video, audio.
Default production-backed models:
text: gemini-3.5-flashimage: nano-banana2video: veo-3.1 or seedance-1.5-pro (Volcengine Ark; supports first/last frame i2v)audio: fish-ttsVideo model selection:
veo-3.1: Google Veo; aspectRatio 1:1|4:5|16:9|9:16, duration 4|6|8,
resolution 720p|1080p|4k (1080p/4k require 8s).seedance-1.5-pro: Volcengine Ark; aspectRatio 16:9|9:16|1:1|4:3|3:4|21:9,
duration 4-12, resolution 480p|720p|1080p. First/last frame via
settings.inputImage / settings.inputLastFrameImage or paired upstream images.Avoid placeholder / non-production models such as doubao-seed-2.0-pro,
doubao-seedream-3.0, and doubao-tts unless the user explicitly asks for
them.
edit_workflow for structural changes and pass the complete canvas JSON.text-script-..., image-storyboard-..., video-final-....For complex user goals, build a runnable DAG instead of a single long prompt.
Typical layers:
Rules:
卖点策略, 15秒口播, 镜头1主视觉, 镜头1视频.Use run_workflow_node to execute exactly one node.
Important:
load_skill is only preparation. It never satisfies a run request.get_workflow after loading this skill and inspect the current canvas.data.output.run_workflow_node for a downstream video node until its image/text inputs are ready.run_workflow_node returned success for that node in the current request.Typical order for a product video:
text node: product strategy or short script.image node: key visual / storyboard frame.video node: animate the image or create video from prompt.audio node: voiceover or music.Before editing an existing project:
get_workflow.edit_workflow.run_workflow_node one node at a time.When the user asks for "一句话产出视频", create a small but runnable canvas and run nodes in order.
When the user asks for a complex end-to-end workflow, create the canvas first, then run one ready node at a time until the requested stopping point is reached.