Step-by-step workflow
1
Set up RSS feed triggers
Add RSS Read nodes for each source. Merge outputs.
RSS feeds:
- https://huggingface.co/blog/feed.xml
- https://openai.com/news/rss
- https://www.anthropic.com/news/rss
- https://techcrunch.com/tag/artificial-intelligence/feed/
2
Filter last 24 hours
Add a Function node to filter recent items.
const yesterday = new Date(Date.now() - 24*60*60*1000);
return $input.all().filter(item => {
return new Date(item.json.pubDate) > yesterday;
}).slice(0, 10);
3
Summarise each item with Claude
Add Claude API node. Process each news item.
Summarise this article in exactly 3 bullet points for a tech-savvy Indian audience. Each bullet max 20 words. Focus on: what happened, why it matters, what to do about it.
Article: {{$json.title}} — {{$json.contentSnippet}}
4
Post to Telegram channel
Add Telegram node. Format nicely.
🤖 *{{title}}*
{{summary_bullets}}
🔗 [Read more]({{link}})
#AINews #AItheGuru
5
Schedule daily at 7am IST
Set the Schedule trigger cron: 0 7 * * *. Activate workflow.
Pro tips
→
7am IST catches overnight US/EU news
→
Add a "seen URLs" Google Sheet to prevent duplicate posts
→
This is the foundation of a daily AI newsletter business
Why this matters for India
// india context
A focused AI newsletter on Telegram can grow to 10,000+ subscribers in 6-12 months with daily consistency