alt.hn

6/2/2026 at 8:19:11 PM

Now AI agents need what RSS does

https://julienreszka.com/blog/rss-is-back-ai-agents-are-reading-it/

by julienreszka

6/3/2026 at 1:20:00 AM

I have this idea, that instead of browsing completely random things on the internet pushed by what other people are interested in (or want to promote), create an llm that scans through your backlog of projects YOU want to do, and then search the internet for projects/articles about those things, and then create a feed from that.

I'm not sure why I keep reading HN, 99% of the content is uninteresting, probably 99.9% now that every article is about AI. maybe I just like clicking on things.

by analogpixel

6/3/2026 at 1:47:58 AM

This is going to happen, but it's too expensive for your LLM to do the scanning, and instead someone needs to build and maintain the index while allowing other people to subscribe to concepts. The problem is no one has sorted out the embedding space this all lives in.

by acgourley

6/3/2026 at 10:53:38 AM

I'd argue LLMs are getting cheaper, so it will get more feasible for LLMs to soon act on our behalf, bringing only what we're interested in.

Projects like OpenClaw and Hermes already show that this can work whether the source is RSS or simply a website the agent visits.

Even Google now envisions this, since they recently announced "information agents" (https://blog.google/products-and-platforms/products/search/s...) that will keep working in the background. They surely have an index they can use, but I wonder whether that's necessary? AI agents like Claude Code suggest it's possible to use simple keyword searches, without maintaining vector indexes - https://www.tigerdata.com/blog/why-cursor-is-about-to-ditch-...

It could be that soon we're gonna get a fully personalized briefing on the topics that we're interested in, or maybe a new kind of feed, replacing social media.

I'm actually working on the briefing idea myself: https://briefin.com

by DSemba

6/3/2026 at 11:55:50 AM

That's why I reached for Apples own local LLM to fool with similar ideas like this: https://pageforth.com. Apple is better than I expected at this. Right now it filters through things like hacker news articles and whatever else you point it at to summarize and find things that match your interests. Apple's LLM reminds me of Claude like 3 years ago. It's weak for sure. But useful for small dose kind of problems.

by nate

6/3/2026 at 1:26:25 PM

Agree on RSS as the right shape — and worth adding the cost angle nobody's quantified here yet. Having an LLM read a 50KB HTML page is ~$0.03 of gpt-4o input. Polling 1000 sources hourly = ~$720/day, almost all of it tokenizing layout chrome the model throws away. RSS-shaped feeds drop that 90%+ because they strip to deltas. The harder blocker is the supply side though — publishers earn pennies per human pageview from ads and ~$0 from agent polls, so unless feeds become licensed paid endpoints, the publisher incentive runs against your "publish an RSS feed for your content" recommendation. Just like that :)

by eugeneonai

6/3/2026 at 1:11:49 AM

Google should bring back Google Reader. But make it only for bots. And then drop it again once it gets popular.

by daxfohl

6/2/2026 at 9:53:58 PM

What's old is new again. The solution RSS offered was structure for an otherwise unstructured challenge (trying to figure out updates on a site). That value grew exponentially when connected to AI (providing the signals of when do I need to look at this site/podcast again). Smart marketing.

by alextillman

6/2/2026 at 11:15:14 PM

I have almost 40 feeds I subscribe to and they're my primary way of getting information I care about without being exposed to ads or other things I don't want to see.

by phyzix5761

6/2/2026 at 11:15:52 PM

What are your favorite feeds?

by frigidwalnut

6/2/2026 at 11:53:08 PM

These are my top ones:

Protesilaos: https://protesilaos.com/codelog.xml and https://protesilaos.com/commentary.xml

HN: https://hnrss.org/frontpage

Sacha Chua: https://sachachua.com/blog/feed/index.xml

David Revoy: https://www.davidrevoy.com/feed/rss

Davep: https://blog.davep.org/feeds/all.atom.xml

xkcd: https://xkcd.com/atom.xml

YouTube - Michelle Khare: https://www.youtube.com/feeds/videos.xml?channel_id=UCGGZ_PO...

YouTube - TmarTn2: https://www.youtube.com/feeds/videos.xml?channel_id=UC36MGPf...

by phyzix5761

6/3/2026 at 2:18:47 AM

I wouldn't limit it to RSS. They need any structured data (JSON, XML/RSS, CSV etc.).

Systems and agents need to monitor and extract public web content into fresh structured data for their ingestion, intelligence workflows and analysis.

* Shameless plug * Our data infrastructure layer for businesses and AI turns continuously updated websites into a stream of structured data.

https://newsloth.com

by nreece

6/2/2026 at 11:48:23 PM

I built a site that's similar in concept to Hacker News, but is entirely fed by RSS feed content, that is then bullet-pointed summarized on the article page: https://engineered.at/

But I also extract topics automatically from the content too with LLMs, to allow for dynamic topic pages that users can separately subscribe to to tune their feeds.

Haven't promoted it much, but it's pretty amazing what you can do for a couple bucks a month. And my main thesis with this site is that by locking the content to only rss feeds of known blogs, you dramatically reduce the spam submission risk (basically eliminate it). Doesn't handle the spam comment side of things, but that's a different problem.

EDIT: I also open sourced a Rails engine I made to power this site if anyone is interested: https://github.com/dchuk/source_monitor

by dchuk

6/3/2026 at 1:15:54 AM

This looks great, I've wanted something like this for a while. Finding how to click through to the actual item in the feed was a high point of friction for me.

I went to a topic and then clicked on the header of something I was interested in expecting to be brought to the blog post directly. Needing to click on that same title again to be brought to the post was unintuitive to me, I searched around the page, went back and forth a few times and eventually figured it out.

As a user I would love to be able to click directly through to the article FROM the topic feed. I would expect that the comments is a URL to the page that the header currently brings me to. This would match my expectations from using sites like reddit/HN.

A one or two liner summary directly on the topics feed would be really great I think.

by devinpower

6/3/2026 at 1:29:12 AM

Great feedback, should be straightforward to make happen. I’ll try to implement tonight.

by dchuk

6/3/2026 at 1:05:17 AM

As a sysadmin hosting a few blogs, do you mind sharing what IP ranges you crawl from? Or what agent your requests use? Thank you.

by solid_fuel

6/3/2026 at 1:33:35 AM

I presume you’re politely asking in order to block? Which is fine, I get it. On my phone right now but can update later.

I do want to ask though (and I should make this clear in a FAQ or something): the way I check RSS feeds uses adaptive scheduling, so I intentionally don’t check feeds of sites too rapidly. Then the summarization is based on the full article content but I never render that full content on the site (to avoid traffic hijacking concerns). Given that: what’s the concern?

by dchuk

6/3/2026 at 12:44:28 AM

  Your browser is not supported.
  Please upgrade your browser to continue.
Can't even view your site with Firefox

by shaunpud

6/3/2026 at 1:00:38 AM

That’s…bizarre. Let me take a look

EDIT: just checked in firefox, I don't see an issue. can you email me at me@dchuk.com and maybe I can debug with you?

by dchuk

6/3/2026 at 1:10:09 AM

I just noticed the same thing.

UA being blocked for example:

  Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:140.0) Gecko/20100101 Firefox/140.0
Did mess with it some more:

Allowed:

    Opera/9.80 (Windows NT 6.1; U; zh-tw) Presto/2.7.62 Version/11.01
    Opera/9.80 (Windows NT 5.1; U; cs) Presto/2.7.62 Version/11.01
406:

    Mozilla/5.0 (Windows NT 5.1) Gecko/20100101 Firefox/14.0 Opera/12.0
    Mozilla/5.0 (Macintosh; Intel Mac OS X 14; rv:140.0) Gecko/20110101 Firefox/140.0
Maybe just remove it?

by Joe_Cool

6/3/2026 at 3:03:16 AM

Figured it out, had a random block of Firefox versions less than 147 in my ApplicationController for some reason. Of course my home internet went down though so I’ll push in a few.

by dchuk

6/3/2026 at 3:48:00 AM

ok this should now be fixed!

by dchuk

6/3/2026 at 1:31:01 AM

Thanks for this info! Very helpful

by dchuk

6/3/2026 at 1:09:11 AM

Getting

    406 browser not supported
for ESR Firefox 140.

If I set my UA to "FUCKIT" I can use the site perfectly fine. Why is there a User Agent Filter that disables the whole website? This should be maybe a warning, not a complete block.

by Joe_Cool

6/3/2026 at 1:15:11 AM

you know, I had setup some analytics filtering based on geoip because I was getting crazy spam traffic from Chine and Singapore, but that should only be affecting analytics not the whole site. Mind if I ask where you're located? (you can email me privately if preferred: me@dchuk.com)

by dchuk

6/3/2026 at 1:17:36 AM

Europe

IP address has no effect on the User Agent block though...

by Joe_Cool

6/3/2026 at 1:30:35 AM

Yeah I know and agree, just wondering if something is haywire in that logic somehow. Otherwise it’s a bizarre issue but I’ll get it fixed

by dchuk

6/3/2026 at 1:42:10 AM

Glad to hear, and neat site. Cool to see new Ruby on Rails sites. Thought I was the only one still loving it. ;)

by Joe_Cool

6/2/2026 at 11:34:48 PM

Re: Rate Limits, see

https://rachelbythebay.com/w/2024/05/27/feed/

but coming from an aggressively anticommercial world view. She collects evidence that real world feed readers don't implement RSS correctly

https://rachelbythebay.com/w/2026/02/23/readers/

Her problems are the problems of a polling-based protocol and really if she does not like the RSS protocol she should stop publishing it and stand up an ActivityPub or PubSubHubBub service instead.

A big part of the value of Google Reader and the ecosystem around it was that Google could poll your RSS feed once and everyone could read it... A huge win for the Rachels!

by PaulHoule

6/3/2026 at 1:10:47 AM

> Her problems are the problems of a polling-based protocol and really if she does not like the RSS protocol she should stop publishing it and stand up an ActivityPub or PubSubHubBub service instead.

Bit odd to take potshots at a third party blog on this discussion, why single out Rachel?

And more to the point, the dynamics here might be due to RSS being polling-based, but if feed readers implemented the RSS logic correctly it wouldn't matter nearly as much, would it?

by solid_fuel

6/3/2026 at 1:53:19 AM

(1) Rachel complains more than most. Most people realize it is easier for you to speed up your server/lower your costs than to expect people to implement RSS "correctly"

(2) You can use a cache or be correct, pick one! I think of all the lame cache busting methods that are still in use because it took web browsers more than 15 years to get caching mostly right.

(3) If you'd been reading Rachel as opposed to asking why I pointed Rachel out your questions would be answered!

(4) Polling based systems come in two speeds: too fast and too slow and it is possible to be both at the same time

by PaulHoule

6/3/2026 at 3:48:36 AM

"Rael"

(1) is gender-proportionate

(2) Helps people to see that the phenom is more general. applies to any quasisocial SaaS that has an underappreciated hardtech moat or 90% learn-by-doing experts go for suboptimal tradeoffs which noobs would never consider.

(3) Maybe "complains" should be "insists", or even softer "maintains"

by oliculipolicula

6/3/2026 at 1:17:21 AM

we spent a decade killing structured feeds in favor of algorithmic timelines and now we're rebuilding them because the algorithms need structured feeds. the circle of life, but for protocols.

by sperandeo

6/2/2026 at 11:03:33 PM

I guess if you want your content all slurped up and served as coming from AI with no backlinks.

by b3ing

6/3/2026 at 12:00:34 AM

Anyone know the best practices for keeping AI crawlers off your RSS feeds? I know robots.txt works for the well-behaved bots. Other tools like interstitial captchas don't as the feed readers break if you send them anything but XML.

Putting just the post intro in the feed and linking to the website feels like a safer approach, assume you have bot protections on the website, but that's a poor experience for people who want to read in their feed reader.

by 8organicbits

6/3/2026 at 1:12:11 AM

I have some aggressive filters in Caddy that block the worst offenders by CIDR range, and also filter by user agent to remove any honest facebook and amazon bots. Otherwise, maybe strong rate limits by IP?

Edit:

Longer term, the approach might be - provide a separate RSS feed with full content but gated by a query parameter, then only give that URL to known-good consumers via email verification or patreon subscription, etc.

It would suck that people would have to pay more to consume content in their preferred way, but depending on your needs it might be a reasonable compromise.

by solid_fuel

6/3/2026 at 12:56:41 AM

I need what rss does.

Can someone reccomend a way to create an rss feed from a site that has none?

by grobibi

6/3/2026 at 1:20:30 AM

freshrss will do that for you. It has a built in web scraper.

by senectus1

6/2/2026 at 10:35:17 PM

I kinda don't like RSS because I often want like a whole blog archive downloaded if I add a new feed and it usually has limits how far back of posts it will download (randomly configured by each site)

Unless someone has a fix of whatever settings I've been using

by erelong

6/3/2026 at 5:08:50 PM

I had a similar issue where I wanted to read a newly-followed blog from the beginning instead of the point in time when I started to follow, so I created https://refeed.to/

by jayemar

6/2/2026 at 10:41:48 PM

Sorry, I don't have a solution. But I use RSS for everything, and I can confidently say: RSS is not designed for your use case.

by happytoexplain

6/2/2026 at 11:13:59 PM

I use Elfeed for Emacs and it stores the history as you download updates so you can always go back and read an old post.

by phyzix5761

6/2/2026 at 11:30:57 PM

>RSS was declared dead in 2013

Where? Not within the homelab space.

by h4kunamata

6/3/2026 at 12:05:38 AM

They probably meant it hyperbolically, but RSS was on a downward slope during that period. The recent uptick is fascinating.

https://trends.google.com/explore?q=%2Fm%2F0n5tx&date=all&ge...

by 8organicbits

6/3/2026 at 2:07:58 AM

>The recent uptick is fascinating

With US techs harvesting people's data, subscription mess, cars that are no longer cars but computers on wheel, and now AI, even folks with bare minimal knowledge are self hosting things.

All you need is a second hand dirty cheap Dell SFF computer from eBay, install Proxmox on it and even if it comes with only 8GB, you can still spin up a few Proxmox LXC containers (small like Docker but far better).

People are going back to buying physical media, old model of things, wired headphones is all time high.

MP3 players are all time high, no phone, no subscription, just music.

90s, early 2000s is so back and is a good thing, people themselves are putting a hard break on technology.

by h4kunamata

6/3/2026 at 12:24:10 AM

No, 2013 was demise of Google Reader, which was at the time very good and very accessible so it was how a lot of people used RSS

by PunchyHamster

6/2/2026 at 11:34:18 PM

I must add that I self-host FreshRSS to fetch news and GitHub repos updates so I can update my stuff, everything in-house, controlled by me.

RSS makes life so much easier, some only provide the bare minimal while others, provide the whole post so I can read everything right there without opening a website.

Also, some podcast support it so I have a list of podcast that I list and can go back without having to go from website to website.

One place to govern them all, RSS still king.

by h4kunamata

6/2/2026 at 11:52:41 PM

AI agents don't need RSS. What they need is some representation in text. The XML/RSS markup is completely unnecessary.

by _pdp_

6/3/2026 at 12:30:45 AM

[flagged]

by implexa_founder

6/3/2026 at 11:31:03 AM

The issue with RSS is that it doesn't allow to show ads. That is why the RSS reader was killed by Google.

Nowadays AI agents also don't read ads. Let's see how that is going, but the ad industry isn't amused about that.

by amai

6/2/2026 at 10:44:57 PM

i mean, i still read hacker news primarily via RSS in feedly. i kind of never stopped using it, and everybody is much more generous with their feeds nowadays than back in google reader times. bearblog, etc. RSS rules

by 0gs

6/3/2026 at 1:40:41 AM

I think now more than ever humans need RSS, so we can curate what enters our information feed as the social media experiment continues to degenerate.

by notnullorvoid

6/2/2026 at 11:39:27 PM

You mean scraping instead of reading it? Reddit does not like the sound of that at all and are mulling to remove RSS support due to scrapers [0]

[0] https://www.reddit.com/r/modnews/comments/1tq9vxo/protecting...

by rvz

6/2/2026 at 11:47:56 PM

Well yeah if they provide open access to content then AI labs wouldn’t have to pay them for bull access.

by eli

6/3/2026 at 1:22:21 AM

...And Semantic Web.

by hendler

6/3/2026 at 12:39:40 AM

> The same logic will now extend to any written content that agents need to reliably consume.

Get your rapacious hands away from my website please.

> and actively degrades programmatic access.

That's your problem. You choose these tools. If they can't function without ripping everyone else off then why do you persist in using them?

by themafia

6/3/2026 at 1:12:16 AM

[flagged]

by tokenfaucet

6/3/2026 at 1:30:28 AM

[flagged]

by overfits-ai