From pm-live
Pulls Hacker News front page, top comments, or topic search via Firebase and Algolia APIs, digesting stories and discussions without API keys.
How this skill is triggered — by the user, by Claude, or both
Slash command
/pm-live:hn-digestThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
"What's on HN?" deserves better than thirty raw titles — the value is in the digest: what's leading, what the comment sections are actually arguing, and which of it the user cares about. Hacker News serves everything keylessly twice over: the official Firebase API (live items by id) and Algolia's HN search (query, date ranges, popularity). This skill knows when to use which, batches sanely, and...
"What's on HN?" deserves better than thirty raw titles — the value is in the digest: what's leading, what the comment sections are actually arguing, and which of it the user cares about. Hacker News serves everything keylessly twice over: the official Firebase API (live items by id) and Algolia's HN search (query, date ranges, popularity). This skill knows when to use which, batches sanely, and summarizes discussions as positions, not vibes.
Ask for these if not provided:
curl -s "https://hacker-news.firebaseio.com/v0/topstories.json" → then per item curl -s "https://hacker-news.firebaseio.com/v0/item/{id}.json" → title, score, descendants (comment count), url, by, time. Fetch the top 10–15 ids only — not all 500. Also: beststories, newstories, askstories, showstories.curl -s "https://hn.algolia.com/api/v1/search?query=postgres&tags=story&numericFilters=points>50" — or by date: search_by_date. A story's full comment tree in one call: https://hn.algolia.com/api/v1/items/{id}. For topic questions Algolia is one request where Firebase is fifty.[If filtered: the matching stories first.]
| # | Story | Score · Comments | What it is |
|---|
[Discussion mode: the position map — 3–5 argument threads, weighted, attributed] [Search mode: matches with dates and reception]
Source: [HN Firebase API / Algolia HN search] · rerun: [exact curls]
Scores are live snapshots; comments are commenters' views, not facts.
npx claudepluginhub mohitagw15856/pm-claude-skills --plugin pm-liveFetches and summarizes Hacker News top stories, specific articles, and comment threads using official Firebase and Algolia APIs.
Scans the Hacker News front page to summarize today's themes, hot discussions, and industry mix. One request returns overview, hot discussions, and industry mix sections.
Fetches Hacker News front-page posts when user says 'hn'. Delivers top stories with title, age, comment count, and mood image. Supports topic filtering and custom count. Excludes crypto.