News Express

Other

Use this skill when users ask for news updates, daily briefings, or what's happening in the world.

Install

openclaw skills install news-express

News Express

Overview

Use 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.

Trigger Scenarios

  • User asks "what's the news today", "latest updates", "daily briefing"
  • User asks "what's happening domestically/internationally"
  • User requests categorized news such as technology, finance, sports
  • User asks for "morning briefing", "evening briefing", "news summary"

RSS Feeds

🇨🇳 Domestic Sources

SourceCategoryURL
36KrLatest Flash Newshttps://36kr.com/feed-newsflash
SolidotTechnologyhttps://www.solidot.org/index.rss
SSPAITechnology/Digitalhttps://sspai.com/feed
IThomeAI/Technology/Digitalhttps://www.ithome.com/rss/
ZhidxFlash News/Headlines/AI/Roboticshttps://zhidx.com/rss
ITJuziFinancehttps://www.itjuzi.com/api/telegraph.xml
cnBetaAI/Technology/Digitalhttps://plink.anyfeeder.com/cnbeta
OdailyFlash Newshttps://rss.odaily.news/rss/newsflash
People's DailyHeadlineshttp://www.people.com.cn/rss/politics.xml

🌍 International Sources

SourceCategoryURL
OpenAIAIhttps://openai.com/news/rss.xml
NPRUnited Stateshttps://feeds.npr.org/1001/rss.xml
Hacker NewsTechnologyhttps://hnrss.org/frontpage
PANewsFlash Newshttps://www.panewslab.com/rss.xml?lang=en&type=NEWS&featured=true
ArXivAIhttps://rss.arxiv.org/rss/cs.AI
China DailyEnglish/Internationalhttps://www.chinadaily.com.cn/rss/china_rss.xml
TechCrunchTechnologyhttps://techcrunch.com/feed/

Workflow

Step 1: Fetch RSS Content

Use the web_fetch tool to read RSS XML directly:

web_fetch(url="https://openai.com/news/rss.xml")

Step 2: Parse Headlines

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.

Step 3: Compile and Output

Organize by domestic and international categories, taking 6-8 items each, outputting each headline with a concise summary.

Output Format

📰 [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

Important Notes

  • No API Key Required: All data is obtained through public RSS feeds
  • Some domestic sources may require proper network access: If access fails, automatically switch to backup sources
  • Content Timeliness: RSS typically updates every 15-60 minutes
  • Language: Domestic sources output in Chinese, international sources can be bilingual (Chinese/English)