{
  "name": "Social Media Auto-Poster",
  "nodes": [
    {
      "parameters": {
        "rule": {
          "interval": [
            {
              "field": "days",
              "daysInterval": 1
            }
          ]
        }
      },
      "name": "Schedule",
      "type": "n8n-nodes-base.scheduleTrigger",
      "position": [
        250,
        300
      ]
    },
    {
      "parameters": {
        "operation": "read",
        "documentId": "{{CONTENT_SHEET}}",
        "sheetName": "Posts"
      },
      "name": "Get Content",
      "type": "n8n-nodes-base.googleSheets",
      "position": [
        500,
        300
      ]
    },
    {
      "parameters": {
        "model": "gpt-4",
        "messages": {
          "values": [
            {
              "content": "Adapt this post for Twitter (280 chars max): {{$json.content}}"
            }
          ]
        }
      },
      "name": "Adapt for Twitter",
      "type": "n8n-nodes-base.openAi",
      "position": [
        750,
        200
      ]
    },
    {
      "parameters": {
        "text": "={{$json.adapted_content}}"
      },
      "name": "Post to Twitter",
      "type": "n8n-nodes-base.twitter",
      "position": [
        1000,
        200
      ]
    }
  ],
  "connections": {
    "Schedule": {
      "main": [
        [
          {
            "node": "Get Content",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Get Content": {
      "main": [
        [
          {
            "node": "Adapt for Twitter",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Adapt for Twitter": {
      "main": [
        [
          {
            "node": "Post to Twitter",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}