{
  "name": "竞品追踪工作流",
  "nodes": [
    {
      "parameters": {
        "rule": {
          "interval": [
            {
              "field": "cronExpression",
              "expression": "0 9 * * *"
            }
          ]
        }
      },
      "name": "每天9点触发",
      "type": "n8n-nodes-base.cron",
      "typeVersion": 1,
      "position": [0, 0]
    },
    {
      "parameters": {
        "url": "YOUR_DATA_SOURCE_URL",
        "method": "GET",
        "options": {}
      },
      "name": "抓取竞品",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 1,
      "position": [220, 0]
    },
    {
      "parameters": {
        "url": "https://api.moonshot.cn/v1/chat/completions",
        "method": "POST",
        "sendHeaders": true,
        "headerParameters": {
          "parameters": [
            {
              "name": "Authorization",
              "value": "Bearer YOUR_KIMI_API_KEY"
            },
            {
              "name": "Content-Type",
              "value": "application/json"
            }
          ]
        },
        "sendBody": true,
        "specifyBody": "json",
        "jsonBody": "={\"model\":\"moonshot-v1-8k\",\"messages\":[{\"role\":\"system\",\"content\":\"你是资深选题编辑。提取标题套路/正文结构/选题角度，仅输出JSON：title_pattern,structure,angle\"},{\"role\":\"user\",\"content\":\"={{$json.content}}\"}]}",
        "options": {}
      },
      "name": "Kimi结构化",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 1,
      "position": [440, 0]
    },
    {
      "parameters": {
        "authentication": "oAuth2",
        "operation": "create",
        "tableId": "YOUR_FEISHU_TABLE_ID"
      },
      "name": "飞书入库",
      "type": "n8n-nodes-base.feishu",
      "typeVersion": 1,
      "position": [660, 0]
    }
  ],
  "connections": {
    "每天9点触发": {
      "main": [
        [{ "node": "抓取竞品", "type": "main", "index": 0 }]
      ]
    },
    "抓取竞品": {
      "main": [
        [{ "node": "Kimi结构化", "type": "main", "index": 0 }]
      ]
    },
    "Kimi结构化": {
      "main": [
        [{ "node": "飞书入库", "type": "main", "index": 0 }]
      ]
    }
  }
}
