---
title: "Content to Social Workflow"
description: "Automated workflow for repurposing blog content to social media"
type: "prompt"
category: "atomic"
tags: ["workflow", "automation", "social-media", "n8n"]
url: "https://theglitch.ai/academy/prompts/content-to-social"
---

# Content to Social Workflow

Automated workflow for repurposing blog content to social media

## The Prompt

```
Trigger: New blog post published
    ↓
Extract: Pull title, excerpt, URL
    ↓
Generate: Create platform-specific posts
    ↓
Schedule: Queue to social platforms
    ↓
Log: Track in spreadsheet
```


# Content to Social Workflow

Automatically transform published blog posts into social media content.

## Workflow Overview

```
Trigger: New blog post published
    ↓
Extract: Pull title, excerpt, URL
    ↓
Generate: Create platform-specific posts
    ↓
Schedule: Queue to social platforms
    ↓
Log: Track in spreadsheet
```

## Implementation Options

### n8n Version

**Nodes needed:**
1. RSS Feed Trigger (watch blog RSS)
2. HTTP Request (fetch full content)
3. AI Node (generate social posts)
4. Buffer/Hootsuite Node (schedule)
5. Google Sheets (log)

**AI prompt for generation:**
```
Create social media posts from this blog content:

Title: {{$json.title}}
Excerpt: {{$json.excerpt}}
URL: {{$json.link}}

Generate:
1. LinkedIn post (150 words, professional tone)
2. Twitter thread (5 tweets max)
3. Instagram caption (with hashtags)

Include the URL in each.
```

### Make.com Version

**Modules needed:**
1. RSS module (trigger)
2. OpenAI/Claude module (generate)
3. Social platform modules (post)
4. Google Sheets (log)

## Quality Controls

- [ ] Review AI output before scheduling (first week)
- [ ] Set delay between publish and social (4 hours recommended)
- [ ] Vary posting times by platform
- [ ] Track engagement to refine prompts

## Estimated Setup

| Platform | Setup Difficulty | Maintenance |
|----------|-----------------|-------------|
| n8n | Medium | Low |
| Make.com | Low | Low |
| Zapier | Low | Medium (cost) |

---

**Related:** [AI Workflow Automation](/articles/productivity/ai-workflow-automation)

