10_content_repurposing
10. Automated Content Repurposing Engine
Description
This workflow takes a single piece of long-form content, like a blog post, and automatically generates multiple shorter, tailored versions for different platforms. For example, it can create a tweet, a LinkedIn post, and an email newsletter snippet from one article.
Architecture
graph TD
A[New Blog Post Trigger] --> B{Fetch Article Content};
B --> C{AI Agent LLM};
C --> D{Tweet};
C --> E{LinkedIn Post};
C --> F{Email Snippet};
Setup
- Import Workflow: Import the
workflow.jsonfile into your n8n instance. - Configure Trigger: In the "New Blog Post" node, provide the
URLof the RSS feed for the blog you want to monitor. - Fetch Content: The "Fetch Article Content" node uses the link from the RSS feed to scrape the full text of the article. No configuration is usually needed here.
- Configure LLM:
- The workflow has three parallel "Generate" nodes, one for each content type (Tweet, LinkedIn, Email).
- In each of these nodes, configure the URL and authentication for your LLM API.
- Review and adjust the prompts in each node to match your desired style and length for each platform.
- Configure Social Media & Email:
- In the "Post to Twitter" and "Post to LinkedIn" nodes, create or select your credentials for each platform.
- In the "Send Newsletter Snippet" node, configure your email credentials and mailing list.
Execution
- The workflow polls the RSS feed on a schedule. You can adjust the polling frequency in the trigger node's settings.
- When a new blog post is detected, the workflow will automatically generate and post the repurposed content to the configured channels.