用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/xiaoDongMr/agentic-workflow-studio --skill workflow-node-start命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | workflow-node-start |
| description | Builds or updates frontend start-node data for workflow inputs. |
| allowed-tools | ["execute_node_skill_script","update_current_graph"] |
Use type: start for the unique entry node of a workflow or loop subgraph.
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 | no | Input variables | Must be empty |
outputs | array | yes | Workflow input variables | Full ordered array |
config | object | no | Start-node settings | Defaults are filled by the script |
Each outputs item contains name: string, type: string, and optional
description: string. config.outputKey names the primary output and
config.enabled must remain true.
Default start node structure:
{
"id": "start",
"title": "开始节点",
"type": "start",
"description": "用户输入",
"inputs": [],
"outputs": [
{
"name": "input",
"type": "String",
"description": "用户输入"
}
],
"config": {
"prompt": "用户输入会在这里进入工作流。",
"model": "N/A",
"temperature": 0,
"maxTokens": 0,
build_node for another start node.add_edge.workflow-node-start/scripts/node.pybuild_nodeid and type.{"data": <Node Schema business fields>}{"node": <complete node>}workflow-node-start/scripts/node.pyupdate_node{"node_id": "existing-id", "changes": <changed fields>}{"node": <complete updated node>}For updates, objects merge recursively, arrays replace the entire old array,
scalars replace directly, and omitted fields stay unchanged. To modify one
output, submit the complete new outputs array.