PREVIEW
n8n 工作流转 PRD
试读预览
n8n 工作流 JSON 通常很大(数万 tokens),必须分段提取以管理上下文。 提取策略(使用 jq 命令): \ 1\. 元信息:节点总数 jq -r '.nodes | length' workflow.json 2\. 节点类型分布 jq -r '.nodes\[\].type' workflow.json | sort | uniq -c | sort -rn 3\. 节点名称列表(理解流程) jq -r '.nodes\[\].name' workflow.json 4\. HTTP 节点 URL(识别外部服务) jq -r '.nodes\[\] | select…