用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/xiaoDongMr/agentic-workflow-studio --skill workflow-node-end命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Builds or updates frontend code-node data for deterministic Python or browser tasks.
Builds or updates frontend LLM-node data with model capability selection.
Builds or updates frontend loop-node data and its nested workflow.
正在显示 SKILL.md
| name | workflow-node-end |
| description | Returns the fixed frontend end-node structure. |
| allowed-tools | ["execute_node_skill_script","update_current_graph"] |
Use type: end for the unique terminal node.
The end node requires no business-data assembly. Do not infer or provide
inputs, outputs, output mappings, model settings, or other node fields.
Call build_node with no arguments and use its complete result unchanged.
{
"id": "end-<uuid>",
"title": "结束节点",
"type": "end",
"description": "返回工作流最终输出。",
"inputs": [],
"outputs": [],
"config": {
"prompt": "输出最终结果。",
"model": "System",
"temperature": 0,
"maxTokens": 1200,
"enabled": true,
"fallbackToHuman": false,
"responseMode": "text",
"outputKey": "final",
"inputMappings": []
}
}
workflow-node-end/scripts/node.pybuild_node{}{"node": <complete node>}workflow-node-end/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. Submit complete arrays when changing
inputs, outputs, or config.inputMappings.