Daily curated news digest for your domain. One command to set up, zero API keys, works offline after first fetch.
A Claude Code plugin that delivers a daily filtered top-10 digest — zero cost, zero credentials, fully local.
claude plugin marketplace add heurema/emporium
claude plugin install herald@emporiumThen in Claude Code:
/news init
This runs preflight checks, creates a Python venv, installs dependencies, copies the default config, and sets up a daily scheduler.
| Command | What it does |
|---|---|
/news init |
Interactive setup wizard — pick preset, schedule time, verify |
/news init <topic> |
Add a topic pack (e.g., rust, devops) to existing setup |
/news add <url> |
Add any URL — auto-discovers RSS feed, suggests name and priority |
/news add <topic> |
Add a built-in topic pack with feeds + keywords |
/news sources |
View all active sources grouped by tier |
/news sources remove <name> |
Remove a source (preset or custom) |
/news sources restore <name> |
Restore a removed preset source |
/news sources export |
Export full config as standalone YAML |
/news sources import <path> |
Import sources from a shared config file |
/news digest |
Read today's digest, grouped by topic |
/news run |
Manually trigger collection + analysis |
/news stop |
Disable scheduler, show cleanup options |
Daily: scheduler → run.sh → collect.py → analyze.py → digest.md
↓
20 RSS feeds + HN Algolia API
↓
dedup → keyword filter → signal scoring → top 10
- Collect: Fetches RSS feeds and HN front-page stories via public APIs
- Dedup: 3-layer deduplication (URL hash, normalization, title similarity)
- Filter: Keyword matching against your configured topics
- Score: Signal scoring based on source weight, points, keyword density, recency
- Digest: Top 10 items as a Markdown file, grouped by topic
The fastest way to add sources — no YAML editing required:
/news add https://simonwillison.net # auto-discovers RSS feed
/news add rust # adds Rust topic pack (3 feeds + keywords)
/news init devops # adds DevOps topic pack to existing setup
Built-in topic packs: rust, devops, golang, typescript, security, python, data.
To manage existing sources:
/news sources # see all active sources
/news sources remove "r/MachineLearning" # remove a source
/news sources restore "r/MachineLearning" # restore a removed preset source
Config lives at ~/.config/herald/config.yaml. It layers your overrides on top of a preset:
version: 1
preset: "ai-engineering" # base preset
schedule_time: "06:00"
timezone: "local"
max_items: 10
# Add your own feeds
add_feeds:
- name: "My Blog"
url: "https://myblog.com/feed"
tier: 1
weight: 0.25
# Remove preset feeds you don't want
remove_feeds:
- "r/MachineLearning"
# Add keyword topics
add_keywords:
devops:
- "kubernetes"
- "terraform"
# Remove keyword topics
remove_keywords:
- ai_financeStart from scratch with --blank:
/news init --preset blank --time 08:00
Then add your own feeds and keywords in the config file.
20 curated feeds across 5 tiers:
- Tier 1 (daily): HN, Simon Willison, AlphaSignal, HF Papers, arXiv cs.AI, GitHub Trending
- Tier 2 (weekly): Import AI, Last Week in AI, Ahead of AI, Latent Space, Practical AI
- Tier 3 (releases): Claude Code, OpenAI Agents SDK, LangChain, CrewAI
- Tier 4 (finance): arXiv q-fin, r/algotrading, ML-Quant
- Tier 5 (community): r/LocalLLaMA, r/MachineLearning
5 keyword categories: ai_agents, ai_coding, ai_finance, ai_models, ai_engineering
All data is local:
~/.config/herald/ # config
~/.local/share/herald/ # data + venv
├── .venv/
└── data/
├── raw/YYYY-MM-DD.jsonl # raw items (90-day retention)
├── digests/YYYY-MM-DD.md # daily digests (365-day retention)
└── state/
├── seen_urls.txt # dedup index (90-day retention)
├── last_run.json # run metadata
└── collect.log # run log
- Fetches only RSS feeds and the public HN Algolia API
- All data stays local on your machine
- No paid API keys required
- Optional: Tavily search (free tier key, not required)
- Python 3.10+
- macOS or Linux (Windows via WSL)
- Claude Code
/news stop
rm -rf ~/.local/share/herald/
rm -rf ~/.config/herald/
Other heurema projects:
- sigil — risk-adaptive development pipeline with adversarial code review
- teams-field-guide — comprehensive guide to Claude Code multi-agent teams
- arbiter — multi-AI orchestrator (Codex + Gemini)
- proofpack — proof-carrying CI gate for AI agent changes
MIT
