Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Enriquefft/nixos --skill rss-reader명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| 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.