What problem does it solve? Manually pulling data off web pages is slow and error-prone, and one-off scraping scripts are hard to reuse. This Skill turns page-scraping intents into a repeatable flow: the first request prototypes the extraction through browser primitives and returns JSON, and subsequent matching requests route to a codified browser-skill that responds in about 200ms. ## Core Features & Use Cases - Intent-based scraping: Triggered by phrases like "scrape this page", "get data from", "pull from", "extract from", or "what's on" a page. - Self-codifying flow: First call on a new intent prototypes the extraction via $B primitives; later calls on a matching intent reuse the codified browser-skill for fast responses. - Read-only safety: Restricted to data extraction; mutating flows such as form fills, clicks, and submissions are delegated to the /automate skill instead. - Use Case: Ask "what's on this pricing page" and receive structured JSON of the page's data, then repeat the same request later and get the answer in milliseconds from the codified skill. ## Quick Start Ask the agent to scrape the data from a specific web page URL and return the result as JSON. Note: the Skill runs a gstack environment preamble (session detection, config, telemetry opt-in prompts) before executing the scrape workflow.