What problem does it solve?
This Skill removes the repetitive, error-prone work of creating boilerplate backend modules in a NestJS microservices monorepo by generating all required files and enforcing project conventions so teams can deliver features faster and with fewer integration issues.
Core Features & Use Cases
- Complete scaffolding: Generates entity, Create/Update DTOs, module, gRPC controller, service, unit test, and mock factory following Lety 2.0 conventions.
- Production-ready patterns: Enforces BaseEntity inheritance, snake_case column names, toResponseDto serialization, RequestContextService usage, BaseRpcException with gRPC status codes, and optional RabbitMQ handlers with ack/nack.
- Use case: Rapidly add a new domain (e.g., Conversation) with relations, validations, and tests that integrate into apps/api and the shared libs folder.
Quick Start
Use the nest-module skill to scaffold a Conversation module with fields title:string, content:jsonb, author:ManyToOne(User), target service apps/api, and enable RequestContextService.