RSS News Aggregator

# rss-news-aggregator

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "RSS News Aggregator" with this command: npx skills add kaiyuelv/rss-news-aggregator

rss-news-aggregator

技能概述

RSS 订阅聚合与新闻抓取工具。支持多源 RSS 订阅抓取、文章摘要提取、关键词过滤、去重排序,自动聚合多平台新闻源为统一的阅读流。

何时使用

  • 需要自动抓取多个网站/博客的最新文章时
  • 需要监控特定关键词在行业新闻中的出现时
  • 需要对文章进行自动摘要和分类时
  • 需要将多个信息源合并为统一输出时
  • 需要定时获取新闻更新并做简单分析时

使用方法

基础用法

from scripts.rss_engine import RSSAggregator

agg = RSSAggregator()

# 添加订阅源
agg.add_feed("https://news.ycombinator.com/rss", name="Hacker News")
agg.add_feed("https://feeds.arstechnica.com/arstechnica/index", name="Ars Technica")

# 抓取所有文章
articles = agg.fetch_all(limit=20)
# -> [{"title": "...", "link": "...", "summary": "...", "source": "Hacker News", "published": "..."}]

# 按关键词过滤
filtered = agg.filter_by_keyword(articles, ["AI", "Python", "cloud"])

# 生成摘要报告
report = agg.generate_summary(filtered)

文件结构

rss-news-aggregator/
├── SKILL.md
├── README.md
├── requirements.txt
├── scripts/
│   └── rss_engine.py          # 核心引擎
├── examples/
│   └── basic_usage.py           # 使用示例
└── tests/
    └── test_rss.py             # 单元测试

依赖

  • feedparser — RSS/Atom 解析
  • requests — HTTP 请求
  • html2text — HTML 转纯文本摘要

标签

rss, news, aggregation, feed, monitoring, content

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

RSS Aggregator

Monitor, filter, and summarize RSS/Atom feeds on a schedule. Use when: (1) tracking industry news or competitor blogs, (2) setting up keyword alerts across m...

Registry SourceRecently Updated
860Profile unavailable
Coding

.Publish Temp

Install, configure, validate, and run the news-fetcher Python CLI for aggregating RSS/Atom and HTML news sources with deduplication, clustering, ranking, sou...

Registry SourceRecently Updated
5770Profile unavailable
Automation

RSS Monitor

Monitor RSS feeds and send notifications when new content is published. Use when user needs to track blog updates, news feeds, or any RSS source. Supports Fe...

Registry Source
1K0Profile unavailable
General

RSS监控

RSS监控技能 - 监控RSS/Atom订阅源,检测更新,获取新内容。

Registry SourceRecently Updated
00Profile unavailable