DEV Community

Nir Feinstein
Nir Feinstein

Posted on

I BUILT MyFeed - describe any topic, get an AI-curated feed from thousands of sources

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

  1. Describe a topic - "Python Django tutorials", "SpaceX launches", "indie game dev" - anything
  2. AI classifies content - An LLM scans thousands of articles and matches them to your feed based on relevance
  3. 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:

  1. Scans 100+ RSS sources and Brave Search for fresh articles
  2. Sends all new articles + all feed prompts to an LLM in one batch
  3. The LLM returns matches with quality scores (1-10)
  4. 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)