用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Enriquefft/nixos --skill rss-reader命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | rss-reader |
| description | Fetch and parse RSS/Atom feeds. Returns structured JSON. |
| user-invocable | false |
./run.ts [--feeds arxiv-ai,hn,reddit-ml] [--since 24h] [--limit 20] [--new-only] [--group research]
--feeds — comma-separated feed names (default: all configured)--group — filter by group: research | news--since — only items newer than duration: 1h, 24h, 7d, 30d (default: 24h)--new-only — only items not seen in previous runs (dedup; use in crons)--limit <n> — cap result count| Key | Source | Group |
|---|---|---|
arxiv-ai | arXiv cs.AI | research |
arxiv-ml | arXiv cs.LG | research |
arxiv-cl | arXiv cs.CL (NLP/LLMs) | research |
arxiv-ma | arXiv cs.MA (Multiagent) | research |
huggingface | HuggingFace Papers | research |
hn | Hacker News frontpage | news |
reddit-ml | r/MachineLearning | news |
reddit-localllama | r/LocalLLaMA | news |
reddit-startups | r/startups | news |
Handles both RSS 2.0 and Atom 1.0 automatically.
JSON array to stdout:
[{ "title": "...", "url": "...", "source": "...", "published": "...", "summary": "..." }]
./run.ts --group research --since 24h./run.ts --feeds arxiv-ai,arxiv-ml,arxiv-cl --since 7d./run.ts --feeds hn,reddit-ml,reddit-localllama --new-only./run.ts --group research --since 7d --new-only --limit 20~/.local/state/openclaw-cron/rss-reader/state.json — tracks seen URLs for dedup. Capped at 3000 entries.