Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

rss-catchupRSS 追赶

Agent Skill

rss-catchup 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

245

周安装

10

GitHub Stars

42

下载量

79
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:rss-catchup(RSS 追赶)
来源仓库:https://github.com/taylorhuston/local-life-manager
仓库路径:skills/rss-catchup
安装命令:
npx skills add https://github.com/taylorhuston/local-life-manager --skill rss-catchup
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/taylorhuston/local-life-manager --skill rss-catchup

简介

用于查找、检索和筛选相关信息,适合根据关键词快速定位候选结果。

  • 支持任务场景分析和来源线索整理,提升信息获取效率。
  • 使用时可结合原始 README 和仓库路径进一步核验具体用法。
  • 安装命令:npx skills add https://github.com/taylorhuston/local-life-manager --skill rss-catchup
  • 安装前建议确认是否会触发联网、命令执行或文件读写操作。

SKILL.md

Catch up on RSS feeds by auto-summarizing new articles.

Prerequisites

Requires feedparser:

pip install feedparser

Helper Script

Use scripts/rss_helper.py for fetching data:

# List recent articles from a feed
python3 scripts/rss_helper.py feed URL [limit]

# Get article content (fetches full page)
python3 scripts/rss_helper.py article URL

Workflow

  1. Load configuration

- Read feed list from references/feeds.json - Read last run timestamp from references/state.json - If first run: go back ~3 months - Otherwise: only articles since last run

  1. For each enabled feed:

- Run: python3 scripts/rss_helper.py feed "FEED_URL" 20 - Filter to articles published since last run - Deduplicate against existing notes: grep -rl "media: {article_url}" "my-vault/07 Knowledge Base/Capture/Articles/" - If a note with that URL exists: skip (already processed, may be missing from state)

  1. For each new article:

- If feed provides full content, use that - Otherwise, run: python3 scripts/rss_helper.py article "ARTICLE_URL" to fetch full text - Summarize the content into bullet points (3-8 based on length/density) - Create article note with status: Summarized - Extract discoveries (see below)

  1. Create discovery notes:

- While summarizing, identify any products, services, frameworks, tools, libraries, or technologies mentioned that might be worth exploring - Search my-vault to check if a note already exists for each discovery - For new discoveries, create a note in my-vault/01 Inbox/ - Link the discovery note from the article's Related field

  1. Update state

- Write current timestamp to references/state.json - Report summary of what was processed

Tagging

IMPORTANT: Read my-vault/09 System/Tag Index.md before processing to verify valid tags.

Tags MUST come from the canonical list - do not invent new tags. Common valid tags for this skill:

  • #ai - LLMs, agents, prompting, AI tools
  • #llm - Large Language Models, model comparisons
  • #dev-tools - IDEs, Git tooling, developer productivity
  • #python, #javascript, #typescript - language-specific
  • #devops, #api, #databases - infrastructure topics
  • #atlassian, #jira, #confluence - Atlassian products

Each feed in references/feeds.json has a tags array specifying default tags. Use these for article notes. Format: tags: ["tag1", "tag2"]

For discovery notes, choose tags based on what the discovery is (e.g., a Python library gets #python, an AI tool gets #ai).

Article Note Format

Create in: my-vault/07 Knowledge Base/Capture/Articles/[Feed Name]/[Title].md

Sanitize filenames: remove special characters, limit length to ~80 chars.

---
class: Article
media: https://example.com/article-url
publishDate: YYYY-MM-DD
status: Summarized
author: Author Name
reviewFrequency:
lastReviewedDate:
review:
aliases:
tags: ["tag1", "tag2"]
cssclasses:
archived:
---
Related:

## Summary

Capture the actual conclusions and insights - what would someone learn from reading this? Not topic labels or "this article discusses X" but the substance:

**Good:** "Multi-agent systems outperform single agents when context exceeds what fits in one prompt - Anthropic's research system with Opus 4 lead + Sonnet 4 subagents beat single-agent Opus 4 by 90.2%"

**Bad:** "Discusses multi-agent architectures and when to use them"

Aim for 4-8 substantive bullets that capture the key takeaways, conclusions, data points, and actionable insights.

## Discoveries

- [[Product Name]] - brief context from article
- (or "None" if nothing noteworthy)

## Why Read?

[One sentence on whether this seems worth actually reading in full]

Feed Config

Edit references/feeds.json:

{
  "feeds": [
    {
      "name": "Feed Display Name",
      "url": "https://example.com/feed",
      "folder": "Folder Name",
      "tags": ["tag1", "tag2"],
      "priority": "high",
      "enabled": true
    }
  ]
}

Tags should be from the canonical list in my-vault/09 System/Tag Index.md.

Discovery Note Format

Create in: my-vault/01 Inbox/[Name].md

---
class: Note
reviewFrequency:
lastReviewedDate:
review:
aliases:
tags: ["tag1", "tag2"]
cssclasses:
archived:
---
Up:
Related: [[Article Title]]

## What is it?

[One sentence description of the product/service/framework]

## Why look into it?

[Brief note on why it seemed interesting from the article context]

## Links

- [Official site or docs if mentioned]

What counts as a discovery:

  • Products or services (SaaS tools, apps, platforms)
  • Frameworks or libraries (programming, ML, etc.)
  • Technologies or protocols
  • Notable companies or projects
  • Methodologies or techniques worth researching

Skip creating notes for:

  • Well-known mainstream things (e.g., "Python", "AWS", "React")
  • Generic concepts that don't warrant their own note
  • Things already covered extensively in existing notes

Processing Tips

  • Process one feed at a time and report progress
  • For long articles, focus on main arguments/takeaways
  • If article content can't be fetched, summarize from title/description
  • Skip articles that already exist in my-vault
  • Keep summaries concise - this is for deciding what to read, not replacing reading
  • When extracting discoveries, be selective - only create notes for things genuinely worth exploring
  • Deduplicate by URL - some articles may appear in multiple feeds

Path Handling

CRITICAL - Never escape spaces with backslashes:

  • Use paths exactly as shown: my-vault/07 Knowledge Base/... (with literal spaces)
  • The Write tool handles spaces correctly - backslash escaping creates literal \ characters in directory names
  • When using Bash commands, wrap paths in double quotes: "my-vault/07 Knowledge Base/..."

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.98%
按下载量换算28

Claude

27.75%
按下载量换算22

Cursor

18.79%
按下载量换算15

Gemini CLI

9.05%
按下载量换算7

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills