Install
openclaw skills install news-expressUse this skill when users ask for news updates, daily briefings, or what's happening in the world.
openclaw skills install news-expressUse this skill when users ask for news updates, daily briefings, or what's happening in the world. Fetches news from reliable international and Chinese RSS feeds, requiring no API keys. Simply use the web_fetch tool to read RSS XML directly.
| Source | Category | URL |
|---|---|---|
| 36Kr | Latest Flash News | https://36kr.com/feed-newsflash |
| Solidot | Technology | https://www.solidot.org/index.rss |
| SSPAI | Technology/Digital | https://sspai.com/feed |
| IThome | AI/Technology/Digital | https://www.ithome.com/rss/ |
| Zhidx | Flash News/Headlines/AI/Robotics | https://zhidx.com/rss |
| ITJuzi | Finance | https://www.itjuzi.com/api/telegraph.xml |
| cnBeta | AI/Technology/Digital | https://plink.anyfeeder.com/cnbeta |
| Odaily | Flash News | https://rss.odaily.news/rss/newsflash |
| People's Daily | Headlines | http://www.people.com.cn/rss/politics.xml |
| Source | Category | URL |
|---|---|---|
| OpenAI | AI | https://openai.com/news/rss.xml |
| NPR | United States | https://feeds.npr.org/1001/rss.xml |
| Hacker News | Technology | https://hnrss.org/frontpage |
| PANews | Flash News | https://www.panewslab.com/rss.xml?lang=en&type=NEWS&featured=true |
| ArXiv | AI | https://rss.arxiv.org/rss/cs.AI |
| China Daily | English/International | https://www.chinadaily.com.cn/rss/china_rss.xml |
| TechCrunch | Technology | https://techcrunch.com/feed/ |
Use the web_fetch tool to read RSS XML directly:
web_fetch(url="https://openai.com/news/rss.xml")
In the RSS XML structure, news headlines are within <title> tags, summaries within <description> tags, and links within <link> tags. Simply extract them from the markdown text returned by web_fetch.
Organize by domestic and international categories, taking 6-8 items each, outputting each headline with a concise summary.
📰 [Latest News]
🗓️ [Date] · [Day of Week]
---
## 🇨🇳 Domestic
• [Headline 1]
[Summary 1]
• [Headline 2]
[Summary 2]
• [Headline 3]
[Summary 3]
...
---
## 🌍 International
• [Headline 1]
[Summary 1]
• [Headline 2]
[Summary 2]
• [Headline 3]
[Summary 3]
...
---
Data Source: RSS Feeds