Read an RSS feed from gopher-cli, summarize the top stories, and save a digest to the vault
Create a digest of the feed at: $ARGUMENTS
If no namespace is given, default to feed.hackernews.
List entries in the feed:
gopher-cli browse feed.hackernews/
Fetch each TextFile item to get the full content. Work through all of them:
gopher-cli fetch feed.hackernews/entry/0
gopher-cli fetch feed.hackernews/entry/1
# ... continue for each entry
Group the entries by theme (e.g., programming, science, business, culture). For each entry write a 1-2 sentence summary capturing the key point.
Format as a clean markdown document:
# Daily Digest: [Feed Title]
Date: [today]
## [Theme 1]
- **[Title]** — [summary]. [link if available]
- ...
## [Theme 2]
- ...
## Quick Stats
- Total entries: N
- Top themes: [theme1], [theme2], [theme3]
Save the digest:
gopher-cli publish vault/digests/[feed-name]-[YYYY-MM-DD].md --content "[digest content]"
Show the user the final digest.