All tutorials

RSS feeds & AI swarms

Ingest blog posts automatically and transform them using xAI Grok.

Step-by-step guide

Build an autonomous content generator.

1

Ingest the content (RSS trigger)

In the Trigger section, switch the dropdown from "CSV URL" to RSS Feed URL. Paste a blog or podcast feed link. VACN grabs the latest post's {{title}}, {{description}}, and {{link}}.

2

The LLM node (AI transformation)

Scroll to the Parser section. In the AI Transformation (xAI Grok) box, write a prompt telling the model what to do with the content. Inject variables directly into your prompt.

Example prompt

Take this blog post description: "{{description}}". Act as a professional social media manager and write 3 punchy, engaging variations for a Twitter thread.
3

Distribute the output (action)

Grok's response is automatically saved as {{ai_output}}. Drop it into your JSON payload to send to GFAVIP Chat.

{
  "title": "New Blog Post: {{title}}",
  "message": "**Suggested Social Posts:**
{{ai_output}}

[Read Original]({{link}})",
  "color": "#f59e0b"
}