What problem does it solve? Developers building Node.js or TypeScript backends need a typed, maintainable way to call the WebRobot REST API without hand-writing raw HTTP requests for every endpoint. This Skill scaffolds client code using the curated WebRobotClient for common operations and a generic fetch-based helper for the remaining 100+ endpoints. ## Core Features & Use Cases - Curated WebRobotClient: Covers roughly 40 common operations across projects, jobs, tasks, agents, datasets, cloud credentials, and LLM providers with TypeScript DTO types. - Generic apiCall escape hatch: Reaches partner-vertical and long-tail endpoints via raw fetch with path templating and query parameter handling. - Auth flexibility: Supports API key or JWT bearer authentication, plus loading shared credentials from the WebRobot CLI config file. - Use Case: A TypeScript backend needs to trigger a WebRobot job and poll until completion. The Skill generates code that executes the job, polls its status every 10 seconds, and tails the logs. ## Quick Start Ask the assistant to scaffold TypeScript code that lists WebRobot projects and executes a job using the webrobot-sdk client with API key authentication.