What problem does it solve? Websites often lack public APIs, forcing developers to reverse-engineer network traffic, authentication cookies, and encoded responses by hand. This Skill automates that process by connecting a browser to a target site, classifying every data transport, and producing working typed proxy routes that return clean JSON. ## Core Features & Use Cases - Traffic Capture and Classification: Connect a browser, navigate pages, intercept pagination, and classify transports such as JSON, WebSocket, GraphQL, and SSE using a mandatory Transport Elimination table. - Session Harvesting: Handle auth-gated endpoints by capturing working requests, eliminating headers and cookies to find the minimum auth set, and replaying them via rateLimitedFetch or Patchright. - Domain Plugin Scaffolding: Generate a complete domain plugin (config, interceptor, routes, package.json) from templates with a single scaffold script. - Use Case: Ask for the API of a site like Hacker News, and receive verified proxy routes such as /api/hackernews/top that you can curl immediately. ## Quick Start Ask the agent to discover the API for a specific website URL and create proxy routes for it.