What problem does it solve? Many websites have no public API, forcing you to drive a real browser for every request, which is slow and expensive. This Skill captures a site's network traffic once and distills it into the private JSON API so you can call it directly with plain HTTP. ## Core Features & Use Cases - HAR Capture: Record network traffic with Playwright from a locally launched browser or attach over CDP to cloud backends like Browserbase, Browser-Use, and Firecrawl. - API Derivation: Filter the HAR to XHR/fetch/JSON traffic, group requests by endpoint, and print query params, headers, request bodies, and replay hints such as the browser User-Agent. - Use Case: You need to repeatedly query a site's autocomplete search. Capture one session, derive the underlying JSON endpoint, then replay it with a small Python requests client — no browser in the loop. ## Quick Start Ask the agent to capture the target site's network traffic with the HAR capture script, derive the API endpoints from the HAR file, and write a small HTTP client that replays the discovered endpoint.