rss-aggregator

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

RSS Aggregator

RSS 聚合器

This skill fetches and aggregates the latest updates from a curated list of RSS feeds defined in
references/feeds.opml
.
本技能会从
references/feeds.opml
中定义的精选RSS订阅源列表获取并聚合最新更新。

Usage

使用方法

When the user asks for updates (e.g., "recent updates", "last 3 days", "what's new"), use the
scripts/aggregate.py
script.
当用户询问更新内容时(例如:“最新更新”“过去3天的内容”“有什么新内容”),请使用
scripts/aggregate.py
脚本。

Command

命令

bash
uv run --with feedparser scripts/aggregate.py --days <number_of_days>
If the user doesn't specify a timeframe, default to 3 days.
bash
uv run --with feedparser scripts/aggregate.py --days <number_of_days>
如果用户未指定时间范围,默认设置为3天。

Output

输出

The script outputs a list of updates in the following format:
  • Title
  • Author
  • Summary (300 characters)
  • Update Time
  • Link
脚本会以以下格式输出更新列表:
  • 标题
  • 作者
  • 摘要(300字符)
  • 更新时间
  • 链接

Configuration

配置

The list of feeds is stored in
references/feeds.opml
.
订阅源列表存储在
references/feeds.opml
中。