← Back to Skills Marketplace
nesdeq

openclaw-feeds

by nesdeq · GitHub ↗ · v3.1.1
cross-platform ✓ Security Clean
4153
Downloads
5
Stars
25
Active Installs
1
Versions
Install in OpenClaw
/install 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.
README (SKILL.md)

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:

  1. Group by theme — cluster related stories under headings (e.g. "Tech & Industry", "Science", "Markets", "Crypto")
  2. Keep it tight — headline + one-line summary + source attribution per item
  3. Link to sources — use markdown links so the user can read more
  4. Deduplicate — if multiple feeds cover the same story, mention it once and note cross-source coverage
  5. 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.
Usage Guidance
This skill appears safe for its stated purpose. Before installing, be comfortable with it running Python locally, installing the feedparser dependency, and contacting the listed public RSS feeds. Review or edit scripts/lists.py if you want to control the news sources.
Capability Analysis
Type: OpenClaw Skill Name: openclaw-feeds Version: 3.1.1 The OpenClaw AgentSkills skill bundle for 'openclaw-feeds' is benign. The `SKILL.md` clearly defines the purpose as an RSS news aggregator and includes a positive constraint instructing the agent *not* to use web search or other URL-fetching tools beyond the specified RSS feeds. The `scripts/feeds.py` Python code uses standard libraries (`urllib.request`, `feedparser`) to fetch and parse RSS feeds from a predefined list of legitimate news sources in `scripts/lists.py`. There is no evidence of data exfiltration, malicious execution, persistence, or prompt injection attempts to subvert the agent's intended behavior. Network access is limited to fetching RSS feeds, which is essential for its stated function.
Capability Assessment
Purpose & Capability
The stated purpose is to fetch public RSS headlines for news, games, and finance, and the code implements that behavior using curated feed lists and JSON output.
Instruction Scope
Instructions are scoped to one category at a time and to presenting headline summaries; no hidden goal changes, autonomous persistence, or unrelated actions are shown.
Install Mechanism
The registry says there is no install spec, while SKILL.md and README disclose a Python/feedparser requirement. The dependency is purpose-aligned but unpinned.
Credentials
The skill uses Bash to run local Python and makes outbound requests to public RSS feeds. This is proportional to the stated RSS aggregation purpose.
Persistence & Privilege
No credentials, environment variables, local config paths, file writes, background services, or persistence mechanisms are evidenced.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install openclaw-feeds
  3. After installation, invoke the skill by name or use /openclaw-feeds
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v3.1.1
Initial release of openclaw-feeds: an RSS-based aggregator providing current headlines in news, games, and finance. - Fetches and aggregates headlines from 57 curated RSS feeds, organized into "news", "games", and "finance" categories. - No API keys or browser tools required—fetches data directly from public RSS feeds. - Returns structured JSON arrays with metadata and entry fields (headline, link, source, date, summary). - CLI supports category selection with `--category`, outputs results as a streaming JSON array. - Output can be parsed and presented with grouping, deduplication, and cross-source highlighting according to provided guidelines. - Handles failed or missing feeds gracefully; reports errors if zero entries found.
Metadata
Slug openclaw-feeds
Version 3.1.1
License
All-time Installs 26
Active Installs 25
Total Versions 1
Frequently Asked Questions

What is openclaw-feeds?

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. It is an AI Agent Skill for Claude Code / OpenClaw, with 4153 downloads so far.

How do I install openclaw-feeds?

Run "/install openclaw-feeds" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is openclaw-feeds free?

Yes, openclaw-feeds is completely free (open-source). You can download, install and use it at no cost.

Which platforms does openclaw-feeds support?

openclaw-feeds is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created openclaw-feeds?

It is built and maintained by nesdeq (@nesdeq); the current version is v3.1.1.

💬 Comments