digest

star 0

Read an RSS feed from gopher-cli, summarize the top stories, and save a digest to the vault

penserai By penserai schedule Updated 3/1/2026

name: digest description: Read an RSS feed from gopher-cli, summarize the top stories, and save a digest to the vault argument-hint: [feed-namespace]

Create a digest of the feed at: $ARGUMENTS

If no namespace is given, default to feed.hackernews.

Workflow

1. Browse the feed

List entries in the feed:

gopher-cli browse feed.hackernews/

2. Read every entry

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

3. Categorize and summarize

Group the entries by theme (e.g., programming, science, business, culture). For each entry write a 1-2 sentence summary capturing the key point.

4. Write the digest

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]

5. Publish to vault

Save the digest:

gopher-cli publish vault/digests/[feed-name]-[YYYY-MM-DD].md --content "[digest content]"

Show the user the final digest.

Install via CLI
npx skills add https://github.com/penserai/gopher-cli --skill digest
Repository Details
star Stars 0
call_split Forks 0
navigation Branch main
article Path SKILL.md
More from Creator