Wraps Next.js App Router API routes with automatic Zod validation so you stop writing the same 30 lines of query parsing and error handling in every endpoint. You define a Zod schema, specify if it's validating query params or body, and get back fully typed input with consistent 400 responses when validation fails. Especially useful if you're building pagination across multiple routes since you can share schemas like paginationInputSchema and eliminate the manual coercion and range checking. The pattern shines when you have dozens of routes and want uniform error formats without boilerplate.
npx skills add https://github.com/bobmatnyc/claude-mpm-skills --skill validated-handler