What problem does it solve? Manually copying data from web pages is slow and error-prone, and writing a custom scraper for every site wastes engineering time. This Skill pulls data from a page on demand: the first request on a new intent prototypes the extraction flow through browser primitives and returns JSON, while repeat requests on a matching intent route to a codified browser skill and return in roughly 200ms. ## Core Features & Use Cases - Intent-based caching: First call on a new intent prototypes the flow; subsequent matching calls reuse the codified path for fast responses. - Structured JSON output: Returns extracted page data as JSON rather than raw HTML, ready for downstream processing. - Read-only safety: Restricted to data extraction; mutating flows like form fills, clicks, and submissions are delegated to the /automate skill instead. - Use Case: Ask "what's on this pricing page" or "extract the product listings from this URL" and receive structured JSON without writing a scraper. ## Quick Start Ask the assistant to scrape a specific URL and extract the data you need, for example: scrape this page and pull all product names and prices into JSON.