What problem does it solve? Building maintainable NestJS backends requires consistent decisions about module structure, validation, guards, error handling, and configuration. This Skill provides production-grade patterns so you avoid ad-hoc architectures, leaky DTOs, and inconsistent error responses. ## Core Features & Use Cases - Modular Project Structure: Organize feature modules, common filters, guards, interceptors, and config in a standard layout. - Validation and Error Handling: Apply global ValidationPipe settings, class-validator DTOs, and a unified exception filter envelope. - Auth and Config Patterns: Implement JWT guards, role-based access, and boot-time environment validation. - Use Case: When scaffolding a new NestJS microservice for a SaaS platform, use this Skill to generate the module layout, bootstrap with global pipes and filters, and add validated DTOs for each endpoint. ## Quick Start Ask the AI to scaffold a NestJS users module with a controller, service, validated create-user DTO, and JWT guard following these patterns.