用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/xiaoDongMr/agentic-workflow-studio --skill workflow-node-loop命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Builds or updates frontend LLM-node data with model capability selection.
正在显示 SKILL.md
| name | workflow-node-loop |
| description | Builds or updates frontend loop-node data and its nested workflow. |
| allowed-tools | ["execute_node_skill_script","update_current_graph"] |
Use type: loop for array iteration or a bounded fixed number of iterations.
build_node.data only contains business fields. Do not provide id, type,
position, or status.
| Field | Type | Required | Meaning | Notes |
|---|---|---|---|---|
title | string | no | Display title | Defaults to 循环 |
description | string | no | Node description | |
inputs | array | yes | Loop source and body inputs | Full ordered array |
outputs | array | no | Collected loop outputs | Full ordered array |
config | object | yes | Loop and nested Graph settings |
| Config field | Type | Required | Meaning |
|---|---|---|---|
loopMode | string | yes | array or count |
loopCount | integer | conditional | 1 to 100 for count mode |
loopBodyNodes | array | yes | Complete nested workflow nodes |
loopBodyEdges | array | yes | Complete nested workflow edges |
loopOutputs | array | yes | Body-output mappings |
loopCanvasWidth | number | no | Nested canvas width |
loopCanvasHeight | number | no | Nested canvas height |
loopOutputs.fieldPath exists in the referenced body node outputs.workflow-node-loop/scripts/node.pybuild_nodeid and type.{"data": <Node Schema business fields>}{"node": <complete node>}workflow-node-loop/scripts/node.pyupdate_node{"node_id": "existing-id", "changes": <changed fields>}{"node": <complete updated node>}Objects merge recursively; arrays replace the entire old array; scalars replace
directly; omitted fields stay unchanged. Any nested Graph change must include
the complete new loopBodyNodes or loopBodyEdges array.