What problem does it solve?
Quickly turning a specific webpage URL and a one-sentence goal into a working single OpenCLI CLI adapter, without doing full site exploration.
Core Features & Use Cases
- Open page and capture the right JSON API: navigate to the URL, wait for requests to fire, then filter network calls to locate the relevant
application/json endpoint.
- Lock and verify the target interface: identify the correct method, headers (cookies/Bearer/CSRF/signatures), and response data path, then reproduce it with
fetch in the browser context.
- Choose an execution strategy and generate the adapter: produce a TypeScript CLI adapter using the appropriate template (public/cookie/header/intercept) based on whether the API can be fetched directly or only through request interception.
Quick Start
Ask the AI to generate the OpenCLI command by providing the target URL and the goal description, then follow the four-step workflow to capture the API, reproduce it, select the matching strategy, and generate the TypeScript adapter.