What problem does it solve? Manually checking Hacker News for top stories is repetitive, and building a custom scraper means dealing with HN's HTML structure, entity decoding, and edge cases like job postings. This Skill automates the entire scrape and returns clean, typed JSON. ## Core Features & Use Cases - Front-page scraping: Navigates to news.ycombinator.com through a browser daemon and parses the stable tr.athing row structure into typed story records. - Structured JSON output: Returns rank, item id, title, URL, points, and comment count for each story, with nulls for job postings that lack scores. - Fixture-tested parser: The pure parseStoriesFromHtml function is tested against a bundled HTML fixture, so selector breakage is caught before users notice. - Use Case: Ask your agent for the current top Hacker News stories and receive a JSON document you can pipe into a digest, dashboard, or trend-tracking script. ## Quick Start Ask the agent to scrape the Hacker News front page and return the top stories as JSON.