rss-skill

RSS Feed Management with agent-rss

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "rss-skill" with this command: npx skills add atopos31/agent-rss/atopos31-agent-rss-rss-skill

RSS Feed Management with agent-rss

Overview

agent-rss is a CLI tool for fetching and filtering RSS/Atom feeds. It outputs structured JSON for easy processing.

Installation Check

First, check if agent-rss is installed:

which agent-rss || echo "not installed"

If not installed:

npm install -g @atopos31/agent-rss

Core Commands

Managing Subscriptions

Add a feed

agent-rss add <name> <url>

List all feeds

agent-rss list

Get a specific feed

agent-rss get <name>

Update a feed

agent-rss update <name> --src <new-url>

Remove a feed

agent-rss remove <name>

Fetching RSS

Fetch specific feed

agent-rss fetch --name <name>

Fetch all feeds

agent-rss fetch --all

Output as JSON array (default is NDJSON)

agent-rss fetch --all --format json

Time Filtering

Relative time (recommended for agents)

agent-rss fetch --all --since 1h # past 1 hour agent-rss fetch --all --since 2d # past 2 days agent-rss fetch --all --since 30m # past 30 minutes

Absolute time

agent-rss fetch --all --since 2026-03-12 agent-rss fetch --all --since 2026-03-12T08:00:00+08:00

Keyword Filtering

Filter by title

agent-rss fetch --all --title "AI" --title "ML"

Filter by content

agent-rss fetch --all --content "machine learning"

Combine filters

agent-rss fetch --all --since 1d --title "AI"

Best Practice: Output to File

IMPORTANT: CLI output may be truncated due to size limits. Always write output to a file, then read it:

Step 1: Write to file

agent-rss fetch --all --since 1d > /tmp/rss-output.json

Step 2: Use Read tool to access full content

Read /tmp/rss-output.json

This ensures no data is lost due to output truncation.

Output Format

Each item contains:

{ "name": "feed-name", "src": "https://example.com/rss", "time": "2026-03-12T15:30:00+08:00", "title": "Article Title", "content": "Article content or summary", "link": "https://example.com/article", "id": "unique-id" }

Common Workflows

Check for Recent News

agent-rss fetch --all --since 1h > /tmp/recent.json

Then read /tmp/recent.json

Search for Specific Topics

agent-rss fetch --all --since 1d --title "AI" --title "LLM" > /tmp/ai-news.json

Then read /tmp/ai-news.json

Daily News Summary

agent-rss fetch --all --since 24h --format json > /tmp/daily.json

Then read /tmp/daily.json and summarize

Finding RSS Feeds

For curated RSS feeds, see: https://github.com/JackyST0/awesome-rsshub-routes

Troubleshooting

  • If a feed times out, try fetching it individually with --name

  • Use --format json for JSON array output

  • Times are displayed in local timezone

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

changelog-curator

从变更记录、提交摘要或发布说明中整理对外 changelog,并区分用户价值与内部改动。;use for changelog, release-notes, docs workflows;do not use for 捏造未发布功能, 替代正式合规审批.

Archived SourceRecently Updated
Automation

klaviyo

Klaviyo API integration with managed OAuth. Access profiles, lists, segments, campaigns, flows, events, metrics, templates, catalogs, and webhooks. Use this skill when users want to manage email marketing, customer data, or integrate with Klaviyo workflows. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).

Archived SourceRecently Updated
Automation

lifelog

生活记录自动化系统。自动识别消息中的日期(今天/昨天/前天/具体日期),使用 SubAgent 智能判断,记录到 Notion 对应日期,支持补录标记。 适用于:(1) 用户分享日常生活点滴时自动记录;(2) 定时自动汇总分析并填充情绪、事件、位置、人员字段

Archived SourceRecently Updated
Automation

unified-self-improving

统一自我进化系统,整合 self-improving-agent、self-improving、mulch 三个技能的优势,提供结构化日志、三层存储、自动升级、模式检测、命名空间隔离和 token 高效的 JSONL 格式支持。

Archived SourceRecently Updated