Block 1 - RSS_TheHackersNews
- Type / Role
- n8n-nodes-base.rssFeedRead - rssFeedRead
- Config choices
- Version 1.2
This workflow is provided as-is. Please review and test before using in production.
This workflow automates the entire lifecycle of collecting, filtering, summarizing, and delivering the most important daily news in technology, artificial intelligence, cybersecurity, and the digit...
n8n-nodes-base.rssfeedread, n8n-nodes-base.stickynote, n8n-nodes-base.filter, n8n-nodes-base.sort, n8n-nodes-base.code, n8n-nodes-base.gmail, @n8n/n8n-nodes-langchain.googlegemini, n8n-nodes-base.merge
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Paolo Ronco.
Original n8n.io sourceThis workflow automates the entire lifecycle of collecting, filtering, summarizing, and delivering the most important daily news in technology, artificial intelligence, cybersecurity, and the digital industry. It functions as a fully autonomous editorial engine, combining dozens of RSS feeds, structured data processing, and an LLM (Google Gemini) to transform a large volume of raw articles into a concise, high–value daily briefing delivered straight to your inbox.
Read: Full setup Guide
The workflow begins with a Schedule Trigger, which runs at predefined intervals. Every execution generates a fresh briefing that reflects the most relevant news from the past 24 hours.
The workflow gathers content from over 25 curated RSS feeds covering:
(The Hacker News, Krebs on Security, SANS, CVE feeds, Google Cloud Threat Intelligence, Cisco Talos, etc.)
(Google Research, MIT News, AI News, OpenAI News)
(Il Sole 24 Ore, Cybersecurity360, Graham Cluley, and more)
(Nvidia Newsroom, Nvidia Developer Blog, Nvidia Blog)
Each RSS feed is handled by a dedicated node, which ensures:
The feeds are grouped using category-specific Merge nodes (Cyber1/2/3, AI, Nvidia), enabling modular scalability.
All category merges feed into the Merge_All node, creating a single combined dataset of articles from every source.
The Filter node removes:
isoDate)This keeps the briefing strictly relevant to the current day.
The Sort – Articles by Date node orders all remaining items in descending date order. More recent or time-sensitive news is therefore prioritized.
A dedicated Code node transforms all incoming items into one clean JSON object:
{
"articles": [
{
"title": "...",
"content": "...",
"link": "...",
"isoDate": "..."
}
]
}
This standardized structure becomes the input for the LLM summarization stage.
The node LLM – News Summarizer is the workflow’s editorial brain.
A complex prompt instructs Gemini to behave like the editor-in-chief of a major tech newspaper, enforcing strict rules:
If multiple feeds report the same story, only one version is kept.
Gemini must output a valid JSON object containing:
subject: the email subject linehtml: a fully structured HTML body grouped into categoriesEach news item ends with a clickable HTML source link, NEVER plaintext URLs.
This step condenses dozens of articles into a polished, editorial-grade briefing.
The Build Final Newsletter HTML node:
subject and html fieldsThe output is a single item containing:
The Send Final Digest Email (Gmail node):
The result is a fully automated Tech & AI Daily Briefing delivered with zero manual effort.
✔ Collects news from 25+ high-quality RSS sources ✔ Normalizes, filters, and sorts all items automatically ✔ Uses Google Gemini to select only the stories that truly matter ✔ Generates a coherent, readable, professional-looking HTML newsletter ✔ Sends the result via email every day
Perfect for:
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
Showing the first 24 of 48 workflow blocks. Download the JSON for the full node graph.
| Workflow | Create and send tech news digests with RSS, Gemini AI and Gmail |
|---|---|
| Complexity | advanced |
| Nodes | 48 |
| Categories | Social Media, AI Summarization |
| Author | Paolo Ronco |
| Published | 03 Dec 2025 |
Use the JSON export at /data/workflows/11466/11466.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
This workflow automates the entire lifecycle of collecting, filtering, summarizing, and delivering the most important daily news in technology, artificial intelligence, cybersecurity, and the digit...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Social Media, AI Summarization use case.