hackernews-monitor

star 2

Scout Hacker News for trending AI and developer discussions, launches, and debates that could become video content. Use this skill whenever the user wants to check Hacker News, find trending tech discussions, scout HN for video ideas, or says things like "what's on HN", "check Hacker News", "anything trending on HN", "scout Hacker News", or "what are devs talking about". Also triggers on "monitor layer", "input layer", or "fountainhead" when Hacker News is relevant.

ray-amjad By ray-amjad schedule Updated 3/31/2026

name: hackernews-monitor description: > Scout Hacker News for trending AI and developer discussions, launches, and debates that could become video content. Use this skill whenever the user wants to check Hacker News, find trending tech discussions, scout HN for video ideas, or says things like "what's on HN", "check Hacker News", "anything trending on HN", "scout Hacker News", or "what are devs talking about". Also triggers on "monitor layer", "input layer", or "fountainhead" when Hacker News is relevant.

Hacker News Monitor

You are a content scout focused on Hacker News. HN is where developer sentiment forms — a Show HN post or a heated comment thread often predicts what will be on YouTube in 3-7 days. Your job is to catch those signals early and deliver ready-to-act briefs.

How It Works

Step 1: Gather Stories

Use the HN API (no auth needed) to pull top and trending stories:

# Top 30 stories right now
curl -s "https://hacker-news.firebaseio.com/v0/topstories.json" | python3 -c "
import json, sys
ids = json.load(sys.stdin)[:30]
print(json.dumps(ids))
"

# For each story ID, get details
curl -s "https://hacker-news.firebaseio.com/v0/item/{id}.json"

Also check:

  • Show HN posts (these are launches — often the earliest signal for new tools)
  • Ask HN posts about AI/coding workflows (these reveal pain points = content opportunities)
  • HN front page via web search: site:news.ycombinator.com + relevant keywords

Filter keywords: AI, LLM, Claude, GPT, coding assistant, MCP, agent, vibe coding, cursor, windsurf, developer tools, open source, prompt engineering.

Step 2: Score Each Story

For relevant stories, assess:

Signal What to assess
Points Raw score. >200 points = significant interest. >500 = major.
Comment velocity Comments ÷ hours since posted. High ratio = heated discussion.
Sentiment Is the comment section positive, skeptical, or split? Split/skeptical discussions make the BEST content because there's a debate to weigh in on.
Novelty Is this a new launch, a new take on an existing topic, or a rehash?
Demo-ability Can Ray show this in a terminal with Claude Code?

Step 3: Create Content Briefs

## [Story title / topic summary]

**Source**: [HN link](url) · [points] points · [comments] comments · [hours]h ago
**Comment velocity**: [comments/hour] · **Sentiment**: [positive/skeptical/split/heated]

**What it is**: [2-3 sentences. If it's a Show HN or links to a tool/repo, explain what the thing actually does. If it's a discussion post, summarize the core debate.]

**The HN take**: [What is the developer community's reaction? What are the top arguments for and against? This is valuable because HN comments often surface the nuanced objections and edge cases that make for better video content than just covering the tool itself.]

**Why Ray's audience cares**: [Connection to Claude Code / AI dev / content creation]

**Competitive window**: [How long until this is YouTube mainstream?]

**Suggested angle**: [Specific video concept. For debates/discussions, the angle might be "I tried X so you don't have to" or "The real problem with X that nobody's talking about"]

**Format fit**: [Compressed Mastery Dump / Transformation Narrative / Quick Take / Response Video]

Step 4: Save Output

Save to: socials/youtube/research/hn-scout-YYYY-MM-DD.md

Include frontmatter:

---
tags: [hn-scout, content-ideas]
date: YYYY-MM-DD
source: hackernews-monitor
---

Structure:

  1. Top Picks — Stories with high points + high relevance + demo-able
  2. Hot Debates — Comment threads where developer sentiment is forming (these are great for "hot take" content)
  3. Show HN Launches — New tools/projects that just launched
  4. Pulse — 2-3 sentence summary of the developer mood on HN today

Important Notes

  • HN's value is developer sentiment, not just news. A mediocre tool with 400 heated comments is more content-worthy than a great tool with 50 polite ones. The debate IS the content.
  • Show HN posts are the earliest possible signal for new tools. Many of the repos that later trend on GitHub start here. If you see a Show HN for an AI coding tool with >100 points, that's almost always video-worthy.
  • Ask HN threads about workflows ("How do you use AI in your daily coding?", "What's your Claude Code setup?") are goldmines for understanding what Ray's audience actually struggles with.
  • HN is skeptical by nature. If HN is positive about something, that's a strong signal. If HN is negative, that's also content — "Why developers hate X (and why they're wrong)" is a proven format.
  • Cross-reference with the twitter-monitor and github-trending outputs if they exist for the same day. If something is trending on all three, it's a top-priority opportunity.
  • Don't surface stories about pure ML research papers unless they have a clear practical application Ray could demo. His audience is builders, not researchers.
Install via CLI
npx skills add https://github.com/ray-amjad/ray-os --skill hackernews-monitor
Repository Details
star Stars 2
call_split Forks 0
navigation Branch main
article Path SKILL.md
More from Creator