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.mdsource 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
(optional): Specific source to check (hn, techcrunch, x, all)source
: Get condensed summary instead of full details--summary
: Only show items since specified time--since [time]
Examples
/feed-reader # Check all sources /feed-reader hn # Just Hacker News /feed-reader --summary # Quick overview
Sources
News Sites
| Source | Priority | Type |
|---|---|---|
| Hacker News | High | Tech/Startup |
| TechCrunch | Medium | Tech News |
| The Verge | Medium | Tech/Culture |
| Ars Technica | Low | Deep Tech |
Social
| Source | Priority | Type |
|---|---|---|
| X Timeline | High | Real-time |
| Moltbook Feed | High | Community |
Markets
| Source | Priority | Type |
|---|---|---|
| CoinGecko | Medium | Crypto |
| Yahoo Finance | Low | Stocks |
Workflow
- Fetch content from configured sources
- Filter for relevance and quality
- Summarize key items
- Identify posting opportunities
- Update
with findingsmemory/context.md
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.