From sundial-org-awesome-openclaw-skills-4
Fetches headlines from curated RSS feeds across news, games, and finance categories. No API keys required.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sundial-org-awesome-openclaw-skills-4:openclaw-feedsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
RSS news aggregator. Fetches all current entries from curated feeds across three categories — news, games, and finance. Concurrent fetching, streamed JSON output. No API key needed.
RSS news aggregator. Fetches all current entries from curated feeds across three categories — news, games, and finance. Concurrent fetching, streamed JSON output. No API key needed.
Do NOT use web search, WebFetch, browser tools, or any other URL-fetching tool when this skill is active. The RSS feeds are the sole data source. Do not supplement, verify, or expand results with external searches. Do not fetch article URLs — summaries are already included in the output.
Detect the category from the user's message:
newsfinancegames| Category | Feeds | Sources |
|---|---|---|
news | 21 | Ars Technica, Wired, TechCrunch, The Verge, NYT, Heise, Quanta, Aeon, Nautilus, and more |
games | 10 | GameStar, GamesGlobal, PC Gamer, Polygon, Kotaku, IGN, Rock Paper Shotgun, GamesIndustry.biz |
finance | 26 | Bloomberg, WSJ, FT, CNBC, MarketWatch, Seeking Alpha, The Economist, Forbes, CoinDesk, Fed, ECB |
Feed lists are defined in scripts/lists.py.
Run one invocation per category. Run multiple if the user asks for more than one.
python3 scripts/feeds.py --category news
python3 scripts/feeds.py --category games
python3 scripts/feeds.py --category finance
The script streams a JSON array. The first element is metadata, the rest are entries:
[{"category": "news", "total_entries": 142, "sources": ["aeon.co", "arstechnica.com"], "fetched_at": "2026-01-31 22:00:00"}
,{"title": "Headline Here", "url": "https://example.com/article", "source": "arstechnica.com", "date": "Fri, 31 Jan 2026 12:00:00 GMT", "summary": "Brief summary text..."}
]
| Field | Description |
|---|---|
title | Headline text |
url | Link to full article |
source | Domain name of the feed source |
date | Publication date as provided by the feed |
summary | Brief description, HTML stripped, max 500 chars |
| Flag | Description |
|---|---|
-c, --category | Feed category: news, games, or finance (required) |
After parsing the output, present a structured, concise rundown:
Example output:
### Tech & Industry
- **[Headline](url)** — One-line summary *(Source)*
- **[Headline](url)** — One-line summary *(Source)*
### Science
- **[Headline](url)** — One-line summary *(Source)*
{"error": "No entries found", "category": "..."}.npx claudepluginhub sundial-org/awesome-openclaw-skillsQueries headlines and articles from a self-hosted FreshRSS instance via its Google Reader compatible API. Supports filtering by category, time range, unread status, and count.
Aggregates RSS feeds from major NZ news sites (Stuff, RNZ, NZ Herald, etc.) into a CLI tool for headlines, source browsing, and topic search.
Aggregates and deduplicates recent news from multiple RSS sources into concise topic summaries with source links. Useful for getting a multi-outlet briefing.