| name | rss-digest |
| description | Monitor RSS/Atom feeds from technical publications for article-worthy content. Extracts and scores signals relevant to ArtStroy's content pillars. |
RSS Digest
Scan curated RSS feeds for content signals relevant to ArtStroy's pillars: QA automation, pentesting, programming.
Feed List
QA & Testing:
https://testingjavascript.com/rss.xml
https://playwright.dev/blog/rss.xml
https://semaphoreci.com/blog/rss.xml
Security & Pentesting:
https://portswigger.net/daily-swig/rss
https://feeds.feedburner.com/TheHackersNews
https://owasp.org/feed.xml
Programming & Dev:
https://devblogs.microsoft.com/typescript/feed/
https://astro.build/rss.xml
https://bun.sh/blog.rss
https://css-tricks.com/feed/
Fetch each feed, parse items published in the past 7 days. Older items are not actionable.
Processing
For each item in the past 7 days:
- Extract:
title, link, pubDate, description (first 300 chars)
- Match against ArtStroy pillars
- Score using the same 3-dimension rubric as
hacker-news-digest (Relevance + Timeliness + Uniqueness, 1–5 each)
- Threshold: ≥10/15 advances to topic-brief
Deduplication
Before scoring, check if the topic has already been covered:
- Search
src/content/articles/ for slugs on the same topic
- Search the existing topic-brief backlog (open issues with
topic-brief label)
- If substantially covered, score Uniqueness ≤2
Output Format
Same as hacker-news-digest:
### {Article Title}
- **Source**: {publication name}
- **Link**: {url}
- **Published**: {date}
- **Score**: {R}/5 + {T}/5 + {U}/5 = {total}/15
- **Pillar**: QA / Pentesting / Programming
- **ArtStroy angle**: {how to cover this differently or go deeper}
Aggregate candidates and pass to topic-brief skill.