What problem does it solve? Building REST API endpoints from scratch involves repetitive boilerplate: route definitions, request validation, typed DTOs, consistent error responses, and documentation. This Skill generates complete CRUD endpoint implementations so developers avoid rewriting the same patterns for every resource. ## Core Features & Use Cases - CRUD Route Generation: Produces POST, GET, PATCH, and DELETE handlers with authentication and validation middleware wired in. - Validation & Typing: Creates Zod schemas, TypeScript interfaces, and Pydantic models for request bodies, query parameters, and responses. - Multi-Framework Patterns: Provides implementations for Express with TypeScript, NestJS with Swagger decorators, and FastAPI with Pydantic. - Use Case: When adding a new "products" resource to an Express backend, generate the full stack—routes, controller, validation schemas, pagination, and standardized error responses—in one pass. ## Quick Start Generate a complete CRUD REST API for a Product resource with Zod validation, pagination, and consistent error responses in Express and TypeScript.