⬡ Hub
Skip to content

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

  1. Import Workflow: Import the workflow.json file into your n8n instance.
  2. Configure Trigger: In the "New Blog Post" node, provide the URL of the RSS feed for the blog you want to monitor.
  3. 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.
  4. 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.
  5. 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.

Files and Subdirectories