I JUST LAUNCHED {MyFeed](https://myfeed.space) and wanted to share it with the DEV community.
What is it?
MyFeed is an AI-powered content aggregator. You describe any topic you care about, and it builds a curated feed from thousands of sources across the web - RSS feeds, news sites, blogs, YouTube, and more.
No manual RSS subscriptions. No bookmarking dozens of sites. Just describe what you want to read about.
How it works
- Describe a topic - "Python Django tutorials", "SpaceX launches", "indie game dev" - anything
- AI classifies content - An LLM scans thousands of articles and matches them to your feed based on relevance
- Get a curated feed - Fresh content delivered to your feed, updated regularly
Tech stack
- Next.js 16 + React 19 + Tailwind CSS
- Supabase for auth and database
- LLM classification (GPT-5 Nano) for matching articles to feeds
- RSS + Brave Search API for content sourcing
- Railway for hosting
- Resend for email digests
The classification pipeline
The interesting part is how content gets matched to feeds. Every few hours, a cron job:
- Scans 100+ RSS sources and Brave Search for fresh articles
- Sends all new articles + all feed prompts to an LLM in one batch
- The LLM returns matches with quality scores (1-10)
- Only articles scoring 6+ get inserted into feeds
This keeps costs under $1/month while processing thousands of articles.
Try it out
Check it out at myfeed.space - it's free to use. You can browse 15+ pre-built feeds or create your own custom feed in seconds.
Would love any feedback from the community!
Top comments (0)