What problem does it solve? Manually writing frontend API types, hooks, and validation schemas after every backend change is error-prone and quickly drifts out of sync. This Skill regenerates the typed SDK directly from backend controller schemas so the frontend always matches the backend contract. ## Core Features & Use Cases - Automatic SDK Generation: Runs the Kubb-based pipeline to produce React Query hooks, TypeScript types, Zod schemas, and query key functions from controller InputSchema/OutputSchema definitions. - Contract Synchronization: Keeps frontend validation (route search params, form validators) aligned with the exact Zod contracts the backend enforces. - Troubleshooting Guidance: Covers common failures such as connection refused errors, controllers missing from the SDK, and stale generated output. - Use Case: After adding a new CreateProduct controller and wiring its router, run the Skill to regenerate the SDK, then immediately import useCreateProduct and its Zod schema in a React route. ## Quick Start Ask the agent to regenerate the SDK after your controller changes, ensuring the backend server is running first so the OpenAPI spec can be emitted.