{
  "name": "\ucf58\ud150\uce20 \uc5d0\uc774\uc804\ud2b8 \ud300",
  "nodes": [
    {
      "id": "1",
      "name": "Manual Trigger",
      "type": "n8n-nodes-base.manualTrigger",
      "position": [
        100,
        300
      ]
    },
    {
      "id": "2",
      "name": "Set Topic",
      "type": "n8n-nodes-base.set",
      "position": [
        300,
        300
      ],
      "parameters": {
        "values": {
          "string": [
            {
              "name": "topic",
              "value": "AI \uace0\uac1d\uc751\ub300 \uc790\ub3d9\ud654 3\uac00\uc9c0 \ubc29\ubc95"
            }
          ]
        }
      }
    },
    {
      "id": "3",
      "name": "Researcher",
      "type": "@n8n/n8n-nodes-langchain.lmChatAnthropic",
      "position": [
        500,
        200
      ],
      "parameters": {
        "model": "claude-sonnet-4-6",
        "messages": {
          "values": [
            {
              "role": "system",
              "content": "\ub2f9\uc2e0\uc740 \ub9ac\uc11c\ucc98\uc785\ub2c8\ub2e4. \uc8fc\uc81c\uc5d0 \ub300\ud574 \ud575\uc2ec \ud3ec\uc778\ud2b8 5\uac1c\uc640 SEO \ud0a4\uc6cc\ub4dc 10\uac1c\ub97c JSON\uc73c\ub85c \ubc18\ud658\ud558\uc138\uc694.\n{\"points\": [...], \"keywords\": [...]}"
            },
            {
              "role": "user",
              "content": "\uc8fc\uc81c: {{ $json.topic }}"
            }
          ]
        }
      }
    },
    {
      "id": "4",
      "name": "Writer",
      "type": "@n8n/n8n-nodes-langchain.lmChatAnthropic",
      "position": [
        700,
        200
      ],
      "parameters": {
        "model": "claude-sonnet-4-6",
        "messages": {
          "values": [
            {
              "role": "system",
              "content": "\ub2f9\uc2e0\uc740 \ube14\ub85c\uadf8 \ub77c\uc774\ud130\uc785\ub2c8\ub2e4. \ub9ac\uc11c\uce58 \uacb0\uacfc\ub85c 600\uc790 \ucd08\uc548\uc744 \uc791\uc131\ud558\uc138\uc694."
            },
            {
              "role": "user",
              "content": "\uc8fc\uc81c: {{ $('Set Topic').item.json.topic }}\n\ub9ac\uc11c\uce58: {{ $json.message.content }}"
            }
          ]
        }
      }
    },
    {
      "id": "5",
      "name": "Notion \uc800\uc7a5",
      "type": "n8n-nodes-base.notion",
      "position": [
        900,
        200
      ],
      "parameters": {
        "operation": "create",
        "databaseId": "YOUR_NOTION_DB_ID",
        "title": "{{ $('Set Topic').item.json.topic }}",
        "properties": {
          "Content": "{{ $json.message.content }}"
        }
      }
    }
  ],
  "connections": {
    "Manual Trigger": {
      "main": [
        [
          {
            "node": "Set Topic"
          }
        ]
      ]
    },
    "Set Topic": {
      "main": [
        [
          {
            "node": "Researcher"
          }
        ]
      ]
    },
    "Researcher": {
      "main": [
        [
          {
            "node": "Writer"
          }
        ]
      ]
    },
    "Writer": {
      "main": [
        [
          {
            "node": "Notion \uc800\uc7a5"
          }
        ]
      ]
    }
  }
}