Hello, I’m new here. So far I’ve learned a lot from this community and have used some tipps in building my first couple n8n automations.
Now I am building a agent helping me to curate posts from news outlets that might be worth sharing with our clients. This agent just gives me a first indication, if this post is worth looking into. It recieves a list of topics with the description from the linked google sheets tool. But it only processes the first line. I have no idea how to get it check the summary against all rows.
As you can see from the input and google sheet list below, it should definitely match cisco.
Input
[
{
"title": "Virenscanner ClamAV: Große Aufräumaktion der Entwickler angekündigt",
"link": "https://www.heise.de/news/Virenscanner-ClamAV-Entwickler-starten-Entruempelung-11087471.html",
"pubDate": "2025-11-21T11:08:00.000Z",
"content": "<section><a href=\"https://www.heise.de/news/Virenscanner-ClamAV-Entwickler-starten-Entruempelung-11087471.html\"><img src=\"https://heise.cloudimg.io/v7/_www-heise-de_/imgs/18/4/9/8/2/2/3/8/2025-11-21-ClamAV-Aufmacher-9167feb583fc4083.png?org_if_sml=1&q=75&width=450\" alt=\"ClamAV-Logo auf Hintergrund\"/></a><p>Entrümpelung beim Virenscanner ClamAV: Cisco lässt die Entwickler alte Signaturen rauswerfen, auch alte Docker-Images müssen gehen.</p></section>",
"contentSnippet": "Entrümpelung beim Virenscanner ClamAV: Cisco lässt die Entwickler alte Signaturen rauswerfen, auch alte Docker-Images müssen gehen.",
"summary": "Entrümpelung beim Virenscanner ClamAV: Cisco lässt die Entwickler alte Signaturen rauswerfen, auch alte Docker-Images müssen gehen.",
"id": "urn:bid:4982238",
"isoDate": "2025-11-21T11:08:00.000Z"
}
]
Google Sheets
[
{
"row_number": 2,
"topic": "Sicherheit",
"description prompt": "Allgemeine News, Gesetzesänderungen und Kommentare zu Sicherheit im Telekommunikations und ISP Sektor"
},
{
"row_number": 3,
"topic": "Virenschutz",
"description prompt": "Allgemeine News zu Virenschutz software, Anbietern von Virenschutzsoftwar, Gesetzesänderungen und Kommentare zu Virenschutzsoftware. Keine Leaks oder Breaches."
},
{
"row_number": 4,
"topic": "Cisco",
"description prompt": "Alle Nachrichten zu Cisco"
}
]
Output
[
{
"output": {
"id": "urn:bid:4982238",
"maybe_interesting": false,
"themen": [],
"confidence": 85,
"reasoning": "The summary discusses a cleanup of the ClamAV virus scanner. While this is a security-related topic (\"Sicherheit\"), the description prompt for this topic is \"Allgemeine News, Gesetzesänderungen und Kommentare zu Sicherheit im Telekommunikations und ISP Sektor\". The summary does not specifically relate to the \"Telekommunikations und ISP Sektor\" and is more of a general product maintenance update rather than focused content for the specified sectors. Given the instruction to be rather restrictive, this summary does not sufficiently match the described audience interest."
}
}
]
- n8n version: 1.118.1
- Running n8n via (Docker, npm, n8n cloud, desktop app): default config Docker @ hostinger
