9.7k★by nesdeq
openclaw-feeds – OpenClaw Skill
openclaw-feeds is an OpenClaw Skills integration for coding workflows. >
Skill Snapshot
| name | openclaw-feeds |
| description | > OpenClaw Skills integration. |
| owner | nesdeq |
| repository | nesdeq/openclaw-feeds |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @nesdeq/openclaw-feeds |
| last updated | Feb 7, 2026 |
Maintainer

name: openclaw-feeds description: > RSS news aggregator. Fetches headlines from curated feeds across three categories: news, games, and finance. Use when the user asks about current news, headlines, what's happening, what's going on, or says "what's up in news", "what's up in finance", "what's up in games", or the German equivalents "was geht mit nachrichten", "was geht mit money", "was geht mit gaming". Also activates for requests like "give me a news rundown", "latest headlines", "market news", "gaming news", "tech news", "finance roundup", or "briefing". Returns structured JSON from public RSS feeds — no API keys, no web search needed. license: MIT compatibility: Requires Python 3, feedparser (pip install feedparser), and network access to fetch RSS feeds. allowed-tools: Bash(python3:*) metadata: author: nesdeq version: "3.1.1" tags: "rss, news, feeds, headlines, aggregator"
Feeds
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.
Constraint
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.
Categories
Detect the category from the user's message:
- "news", "headlines", "nachrichten", "tech news" →
news - "finance", "markets", "money", "stocks", "economy" →
finance - "games", "gaming" →
games
| 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.
How to Invoke
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
Output Format
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 |
CLI Reference
| Flag | Description |
|---|---|
-c, --category | Feed category: news, games, or finance (required) |
Presenting Results
After parsing the output, present a structured, concise rundown:
- Group by theme — cluster related stories under headings (e.g. "Tech & Industry", "Science", "Markets", "Crypto")
- Keep it tight — headline + one-line summary + source attribution per item
- Link to sources — use markdown links so the user can read more
- Deduplicate — if multiple feeds cover the same story, mention it once and note cross-source coverage
- Highlight big stories — if a story appears across 3+ sources, call it out prominently
Example output:
### Tech & Industry
- **[Headline](url)** — One-line summary *(Source)*
- **[Headline](url)** — One-line summary *(Source)*
### Science
- **[Headline](url)** — One-line summary *(Source)*
Edge Cases
- Failed or timed-out feeds (15s timeout) are silently skipped — remaining feeds still return results.
- If zero entries are returned, the script exits with
{"error": "No entries found", "category": "..."}. - Some entries may lack summaries — they will still have title, URL, and source.
Feeds
RSS news aggregator skill. Fetches headlines from curated feeds across three categories — news, games, finance. Concurrent fetching, structured JSON output. No API key needed.
How It Works
- Pick a category — news, games, or finance
- Concurrent feed fetching — all RSS feeds for that category fetched in parallel (15s timeout per feed)
- Streamed output — results print as a JSON array, one element per entry
One call returns all current entries from every feed in the selected category.
Install
1. Clone
git clone https://github.com/nesdeq/openclaw-feeds.git ~/.openclaw/skills/feeds
2. Install feedparser
feedparser is the only dependency.
pip install --user feedparser
# Or if you use pip3 explicitly
pip3 install --user feedparser
Verify it's importable:
python3 -c "import feedparser; print('ok')"
3. Run
python3 ~/.openclaw/skills/feeds/scripts/feeds.py --category news
Categories
news — General news (21 feeds)
Tech, science, culture, essays. Sources include Ars Technica, Wired, TechCrunch, The Verge, NYT, Heise, Quanta Magazine, Aeon, Nautilus, and more.
python3 scripts/feeds.py --category news
games — Gaming news (10 feeds)
German and US gaming press. Sources include GameStar, GamesGlobal, PC Gamer, Polygon, Kotaku, IGN, Rock Paper Shotgun, GamesIndustry.biz.
python3 scripts/feeds.py --category games
finance — Finance & markets (26 feeds)
Markets, business, economy, crypto, central banks. Sources include Bloomberg, WSJ, FT, CNBC, MarketWatch, Seeking Alpha, The Economist, Forbes, CoinDesk, Fed, ECB.
python3 scripts/feeds.py --category finance
Output Format
Streamed JSON array — first element is metadata, 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://...", "source": "arstechnica.com", "date": "Fri, 31 Jan 2026 ...", "summary": "Brief summary text..."}
,{"title": "Another Headline", "url": "https://...", "source": "wired.com", "date": "...", "summary": "..."}
]
Entry Fields
| 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 summary/description (HTML stripped, max 500 chars) |
CLI Reference
| Flag | Description |
|---|---|
-c, --category | Feed category: news, games, or finance (required) |
FAQ & Troubleshooting
Q: Do I need an API key?
No. This skill reads public RSS feeds directly.
Q: Why are some entries missing summaries?
Some feeds don't include summary/description fields. The entry will still have title, URL, and source.
Q: Can I add my own feeds?
Edit
scripts/lists.py— three lists:NEWS_FEEDS,GAMES_FEEDS,FINANCE_FEEDS.
Error: "feedparser is required but not installed"
pip install --user feedparser
# Then verify: python3 -c "import feedparser; print('ok')"
License
MIT
Links
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install openclaw-feeds?
Run openclaw add @nesdeq/openclaw-feeds in your terminal. This installs openclaw-feeds into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/nesdeq/openclaw-feeds. Review commits and README documentation before installing.
