Open
Conversation
Implements a daily agent that fetches AI/ML news from curated RSS feeds (Google News, ArXiv, Hugging Face, MIT Tech Review, The Verge, VentureBeat), summarizes the top stories with Google Gemini (free tier), and sends a formatted HTML email digest via Gmail SMTP on a configurable daily schedule. - src/searcher.py: RSS feed fetcher with 24h filtering and deduplication - src/summarizer.py: Google Gemini (gemini-1.5-flash) summarization - src/emailer.py: HTML email builder and Gmail SMTP sender - src/agent.py: Pipeline orchestrator (fetch → summarize → email) - main.py: Entry point with --now flag and built-in daily scheduler - requirements.txt: feedparser, google-generativeai, schedule, python-dotenv - .env.example: Configuration template with setup instructions - README.md: Full setup and usage guide https://claude.ai/code/session_01NiZyAdwvvEBy6bwUdwbPLi
Replace Google Gemini with Groq (llama-3.3-70b-versatile) for article summarization, and replace Gmail SMTP with Resend for email delivery. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Rename src/agent.py to src/workflow.py to better reflect that this is a pipeline orchestrator, not an agent. Also replace broad Google News queries with more specific ones, drop The Verge, and add ArXiv cs.CL, DeepMind Blog, and TechCrunch AI for more tech-focused coverage. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implements a daily agent that fetches AI/ML news from curated RSS feeds (Google News, ArXiv, Hugging Face, MIT Tech Review, The Verge, VentureBeat), summarizes the top stories with Google Gemini (free tier), and sends a formatted HTML email digest via Gmail SMTP on a configurable daily schedule.
https://claude.ai/code/session_01NiZyAdwvvEBy6bwUdwbPLi