A Claude Code skill that generates weekly digests from 80+ top tech blogs (based on Hacker News popularity).
# Install uv (if you don't have it)
curl -LsSf https://astral.sh/uv/install.sh | sh
# Clone to your Claude Code commands folder
git clone https://github.com/YOUR_USERNAME/weekly-digest ~/.claude/commands/weekly-digestIn Claude Code:
/weekly-digest
This will:
- Fetch all 80 RSS feeds in parallel
- Filter posts to the current week
- Generate one-line summaries for each post
- Write a markdown digest to
notes/digests/YYYY-WXX-digest.md
For last week's posts:
/weekly-digest --week last
For a specific week:
/weekly-digest --week 2024-W05
You can also run the fetch script directly (without Claude Code):
uv run fetch.py # current week
uv run fetch.py --week last # previous weekThis outputs JSON with post titles, links, dates, and excerpts. Summaries require Claude Code.
SKILL.md- Skill instructions for Claude Codefetch.py- Async Python script that fetches and filters feedsfeeds.json- List of 80 blog RSS/Atom feed URLs
Blog list from Andrej Karpathy's most popular HN blogs.