This one helps you write Zod 4 validation schemas with correct syntax, which matters because v4 introduced breaking changes like moving email, uuid, and url from string methods to top-level validators. You get patterns for the usual suspects: form validation with React Hook Form, API request parsing, discriminated unions, and type-safe transforms. The migration examples are helpful if you're upgrading from v3, and the refinement patterns show how to handle cross-field validation without fighting the library. It covers error handling with the new error parameter syntax and includes safeParse patterns so you're not just throwing exceptions everywhere. Solid reference if you're tired of checking the docs for the hundredth time.
npx skills add https://github.com/prowler-cloud/prowler --skill zod-4