Claude-skill-registry feed-reader

Aggregate news and social feeds to stay informed

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/feed-reader" ~/.claude/skills/majiayu000-claude-skill-registry-feed-reader && rm -rf "$T"
manifest: skills/data/feed-reader/SKILL.md
source content

Feed Reader Skill

Purpose

Consume content from various sources to stay informed about:

  • Tech news and developments
  • AI/ML updates
  • Market movements
  • Social media trends
  • Internet culture

Invocation

/feed-reader [source] [options]

Arguments

  • source
    (optional): Specific source to check (hn, techcrunch, x, all)
  • --summary
    : Get condensed summary instead of full details
  • --since [time]
    : Only show items since specified time

Examples

/feed-reader              # Check all sources
/feed-reader hn           # Just Hacker News
/feed-reader --summary    # Quick overview

Sources

News Sites

SourcePriorityType
Hacker NewsHighTech/Startup
TechCrunchMediumTech News
The VergeMediumTech/Culture
Ars TechnicaLowDeep Tech

Social

SourcePriorityType
X TimelineHighReal-time
Moltbook FeedHighCommunity

Markets

SourcePriorityType
CoinGeckoMediumCrypto
Yahoo FinanceLowStocks

Workflow

  1. Fetch content from configured sources
  2. Filter for relevance and quality
  3. Summarize key items
  4. Identify posting opportunities
  5. Update
    memory/context.md
    with findings

Output

Returns structured summary:

## Feed Summary - [DATE]

### Top Stories
- [Story 1 with brief summary]
- [Story 2 with brief summary]

### Trending Topics
- [Topic 1]
- [Topic 2]

### Posting Opportunities
- [Potential content angle 1]
- [Potential content angle 2]

### Market Moves
- [Notable movement if any]

Implementation Notes

Uses web search and fetch capabilities to:

  • Scrape HN front page
  • Check news site RSS/homepages
  • Monitor X trends
  • Track market data

Stores findings in

memory/context.md
for reference.