AutomationFlowsSocial Media › Build in Public — Daily Auto-post

Build in Public — Daily Auto-post

Build in Public — Daily Auto-Post. Uses httpRequest, twitter, linkedin. Scheduled trigger; 7 nodes.

Cron / scheduled trigger★★★★☆ complexity7 nodesHTTP RequestTwitterLinkedIn
Social Media Trigger: Cron / scheduled Nodes: 7 Complexity: ★★★★☆ Added:

This workflow follows the HTTP Request → LinkedIn recipe pattern — see all workflows that pair these two integrations.

The workflow JSON

Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →

Download .json
{
  "name": "Build in Public \u2014 Daily Auto-Post",
  "description": "Autonomous daily posts to Twitter/LinkedIn from ship log",
  "nodes": [
    {
      "name": "Schedule",
      "type": "n8n-nodes-base.cron",
      "parameters": {
        "cronExpression": "0 9 * * *",
        "timezone": "UTC"
      }
    },
    {
      "name": "Get Ship Log",
      "type": "n8n-nodes-base.httpRequest",
      "parameters": {
        "url": "https://api.meshtool.ai/v1/growth/ships",
        "method": "GET",
        "headers": {
          "Authorization": "Bearer {{MESHTOOL_API_KEY}}"
        }
      }
    },
    {
      "name": "Select Latest Ship",
      "type": "n8n-nodes-base.code",
      "parameters": {
        "code": "const ships = $input.all()[0].json.ships || []\nconst latest = ships[0]\nreturn [{json: {feature: latest.name, impact: latest.impact, type: latest.type}}]"
      }
    },
    {
      "name": "Generate Post",
      "type": "n8n-nodes-base.code",
      "parameters": {
        "code": "const templates = [\n  'Just shipped: {feature}. Built on Claude. {impact}',\n  '{feature} is now live. {impact}. Shipping daily.',\n  'Automated {feature}. Impact: {impact}'\n]\nconst t = templates[Math.floor(Math.random() * templates.length)]\nconst post = t.replace('{feature}', $input.first().json.feature).replace('{impact}', $input.first().json.impact)\nreturn [{json: {post, platforms: ['twitter', 'linkedin']}}]"
      }
    },
    {
      "name": "Post to Twitter",
      "type": "n8n-nodes-base.twitter",
      "parameters": {
        "text": "={{$node[\\\"Generate Post\\\"].json.post}}"
      }
    },
    {
      "name": "Post to LinkedIn",
      "type": "n8n-nodes-base.linkedin",
      "parameters": {
        "text": "={{$node[\\\"Generate Post\\\"].json.post}}"
      }
    },
    {
      "name": "Log Engagement",
      "type": "n8n-nodes-base.httpRequest",
      "parameters": {
        "url": "https://api.meshtool.ai/v1/growth/engagement",
        "method": "POST",
        "headers": {
          "Authorization": "Bearer {{MESHTOOL_API_KEY}}"
        },
        "body": {
          "post": "={{$node[\\\"Generate Post\\\"].json.post}}",
          "platforms": "={{$node[\\\"Generate Post\\\"].json.platforms}}",
          "timestamp": "={{new Date().toISOString()}}"
        }
      }
    }
  ],
  "connections": {
    "Schedule": {
      "main": [
        [
          "Get Ship Log"
        ]
      ]
    },
    "Get Ship Log": {
      "main": [
        [
          "Select Latest Ship"
        ]
      ]
    },
    "Select Latest Ship": {
      "main": [
        [
          "Generate Post"
        ]
      ]
    },
    "Generate Post": {
      "main": [
        [
          "Post to Twitter",
          "Post to LinkedIn"
        ]
      ]
    },
    "Post to Twitter": {
      "main": [
        [
          "Log Engagement"
        ]
      ]
    },
    "Post to LinkedIn": {
      "main": [
        [
          "Log Engagement"
        ]
      ]
    }
  }
}
Pro

For the full experience including quality scoring and batch install features for each workflow upgrade to Pro

About this workflow

Build in Public — Daily Auto-Post. Uses httpRequest, twitter, linkedin. Scheduled trigger; 7 nodes.

Source: https://github.com/think-zone/creator-os/blob/main/n8n-workflows/build-in-public.json — original creator credit. Request a take-down →

More Social Media workflows → · Browse all categories →

Related workflows

Workflows that share integrations, category, or trigger type with this one. All free to copy and import.

Social Media

Social media managers, creators, and brand accounts that rely on retweets for reach but want an automated, hands-off cleanup after campaigns to keep profiles tidy and on-brand.

HTTP Request, Twitter, Slack +1
Social Media

This workflow monitors brand mentions across multiple platforms (Twitter/X, Reddit, News) and automatically detects reputation crises based on sentiment analysis and trend detection. Multi-platform mo

Twitter, Reddit, HTTP Request +3
Social Media

Social Media AI Agent - Telegram. Uses httpRequest, airtable, linkedIn, twitter. Scheduled trigger; 26 nodes.

HTTP Request, Airtable, LinkedIn +2
Social Media

Creator: Summer Chang

HTTP Request, Notion, Twitter
Social Media

This workflow runs daily, reads the Hacker News frontpage RSS feed, uses OpenAI to extract key insights and ghostwrite social posts, then publishes the generated content to LinkedIn, X, and Bluesky. R

RSS Feed Read, HTTP Request, LinkedIn +1