Building a Personalized AI News Pipeline with Claude

A developer on r/ClaudeAI shared their custom-built system for processing 200+ articles daily to create a personalized morning briefing. The pipeline filters noise and delivers only relevant content based on personal interests.
Pipeline Architecture
The system follows a five-step workflow:
- Ingest: 12 RSS feeds pull content overnight from industry news, competitor blogs, and subreddits, collecting approximately 200 articles daily.
- Score: Each article gets a relevance score against a personal keyword list using Claude Haiku for speed and cost efficiency. Articles scoring below 0.4 are dropped, reducing the pile from 200 to 15-30 articles.
- Triage: Scored articles are classified into three categories: PASS (goes to briefing), PARK (save for later), or REJECT (discard).
- Analyze: PASS articles receive deeper analysis using Claude Sonnet, focusing on practical implications rather than summaries. The analysis answers questions like: "What does this mean for my work? Is there something I should act on? What should I watch?"
- Brief: Everything compiles into a structured morning email with three sections: Signal (act on this), Watch (monitor this), and Deferred (revisit later). The email delivers at 6:30 AM.
Technical Stack and Costs
The implementation uses Python, FastAPI, Supabase for storage, Claude API (Haiku + Sonnet), and Resend for email delivery. It runs on a $7/month Render instance.
API costs remain under $5/month, with Haiku handling the scoring (costing pennies) and Sonnet only processing the 5-8 articles that survive triage. The developer notes that Deepgram would be the most expensive component if audio briefings were added.
Key Insights
- The scoring step matters more than the analysis step. If too much content passes through the filter, Claude wastes tokens summarizing noise. "The filter is the product."
- Structured output with clear sections (Signal/Watch/Deferred) proves more useful than a wall of summaries. The developer tried "summarize these 10 articles" first and found it unreadable, while three categories with one sentence each gets actually read.
- RSS remains underrated as an ingestion layer. Most publications, subreddits, and GitHub repos still provide RSS feeds, making it the cheapest and most reliable option.
📖 Read the full source: r/ClaudeAI
👀 See Also

Using Claude, Gemini, and GPT for AI-Assisted Coding Tasks
Discover how combining Claude, Gemini, and GPT can enhance AI coding workflows by leveraging their unique access capabilities for specific tasks.

Mac Studio local LLM loadout: GLM 5.1, Kimi K2.6, and what's working for coding with Claude Code
A developer shares their May 2026 Mac Studio (M3 Ultra) setup with quantized GLM 5.1 (380GB, 17 tps decode), Kimi K2.6 (460GB, 21 tps decode), and notes on Minimax 2.7, Gemma 4 31B, Qwen 3.5 9B, and pending Deepseek/Mimo support.

Claude Opus Used to Create AI Political Party with Reverse-CAPTCHA
A developer built kifd.org, a fictional AI political party for Germany entirely generated by Claude Opus 4.6. The project features public system prompts for each cabinet member and a reverse-CAPTCHA that requires proving you're an AI to join.

Developer builds self-improving LinkedIn content system with Claude skills
A freelance B2B marketer created a two-skill Claude system for LinkedIn content that writes in their voice and improves based on performance data, generating 110K impressions across 3 posts in one week.