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 →
{
"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"
]
]
}
}
}
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 →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
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.
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
Social Media AI Agent - Telegram. Uses httpRequest, airtable, linkedIn, twitter. Scheduled trigger; 26 nodes.
Creator: Summer Chang
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