Discover RSS and Atom feeds for websites to enable news aggregation and content monitoring.
Run the find-rss script with a website URL:
~/.openclaw/skills/find-rss/scripts/find-rss.sh <website_url>
Example:
~/.openclaw/skills/find-rss/scripts/find-rss.sh https://techcrunch.com/
tags/feed, /rss, /atomThe script performs two main checks:
Most websites with RSS feeds include a link tag in their HTML:
<link rel="alternate" type="application/rss+xml" href="https://example.com/feed/">
The script extracts all such links from the page source.
If no link tags are found, the script tests common RSS paths:
/feed and /feed//rss and /rss//atom and /atom//index.xml, /feed.xml, /rss.xml/blog/feed, /news/feedIf no RSS feed is found:
| Platform | Typical Feed URL |
|---|---|
| ---------- | ----------------- |
| WordPress | https://site.com/feed/ |
| Medium | https://medium.com/feed/@username |
| Substack | https://newsletter.substack.com/feed |
| Ghost | https://site.com/rss/ |
| YouTube | https://www.youtube.com/feeds/videos.xml?channel_id=... |
共 1 个版本