entertainment-previous.workflow.json 1.0 KB

1234567891011121314151617
  1. {
  2. "schema_version": "workflow/v1",
  3. "workflow_key": "entertainment-previous",
  4. "name": "客厅遥控:上一条",
  5. "description": "对短视频/推荐流页面按方向键上,切换上一条。",
  6. "variables": {},
  7. "settings": {"max_steps": 5, "default_timeout_ms": 15000, "on_unhandled_error": "pause_for_user", "return": {"node_id": "media"}},
  8. "nodes": [
  9. {"id": "start", "type": "flow.start", "title": "开始", "position": {"x": 80, "y": 160}, "params": {}, "inputs": {}},
  10. {"id": "media", "type": "media.control", "title": "上一条", "position": {"x": 340, "y": 160}, "params": {"action": "previous"}, "inputs": {}},
  11. {"id": "end", "type": "flow.end", "title": "结束", "position": {"x": 600, "y": 160}, "params": {}, "inputs": {}}
  12. ],
  13. "edges": [
  14. {"id": "start_to_media", "kind": "control", "source": "start", "source_port": "next", "target": "media", "target_port": "run"},
  15. {"id": "media_to_end", "kind": "control", "source": "media", "source_port": "success", "target": "end", "target_port": "run"}
  16. ]
  17. }