First thing first:
don't equate "web feed" to "RSS"; it is a family of technologies rather than a single technology.
I actually like manually going to websites and checking for updates. It kinda feels more personal.
I actually used to be in your camp, until the number of webcomics I follow exceeded dozen-- which it was starting to be exhausting for me to regularly follow them by hand daily. That was the time I started using the small Internet "follow" tool (feed reader) bundled in my browser to follow them. (Opera Classic; RIP)
Never looked back to my manually-checking days ever again.
Nowadays, even that I look through my feed reader only once a day; if I encountered new incrementally-updated works which I can't follow with my feed reader... I would find that I would start forgetting to check it, and the thing would end up completely forgotten quite quickly.
But I know a lot of indie web folks who reeeeaaally push for RSS, and I do understand them. I just don't know if I should implement an idea that I don't personally believe in?
Note that the minimal kind of web feed possible is the OG style-- giving only headings of things you have, associated URL, and associated timestamp (also UUID when the spec required); arranged reverse-chronologically, just that. No in-feed summary or in-feed content was needed
(1); the feed reader would simply offer visitor to load target page, or open the page in browser when it detected such absence.
^ Note that RSS feed is also very hacky in the last aspect mentioned
(2), which means...
If you hand-craft your site and feed,
I do NOT recommend making it RSS feed; make it an
Atom feed instead. It is not new
(3) and virtually every feed readers support it. Atom is cleaner and designed to be harder for you to screw up stealthily without
validator screaming at you-- which is especially important when you don't follow your own feed and only relied on validator to detect your errors.
(1) Even if you were participating in things like
feedreaders' exclusives (proponents of this scheme refer to it using a misnomer "
RSS club", but I won't); you don't need in-feed content-- you just make sure that such "exclusive" pages were merely unreachable from your home/index page.
(2) Because limitation+ambiguity of RSS specification and how people have been misappropriating it to this day; feed reader literally can't tell differrence between RSS feed which contains summary vs. RSS feed with actually contained "full content". The only way to avoid this confusion in RSS feed, is to write it in the OG way I just suggested (headings only, no summary, no content).
Atom feed doesn't have this problem: summary is called `<summary>` while full content is literally called `<content>`. Clear and simple.
(3) It's actually nearly 20 years old now. My first time in blogosphere was around the time back when Atom was new; time sure flies.