dto-response
Installation
SKILL.md
DTO and Response Class Guide
Use this skill when creating or modifying DTO files in the dto/ folder.
Input DTO (Request)
import { IsDateString, IsEnum, IsNotEmpty, IsOptional, IsString, Length } from 'class-validator';
import { IsE164 } from 'src/app.utils';
import { EntityEnum } from '../entity.enums';
export class CreateEntityDto {
@IsNotEmpty()
@IsString()
requiredField!: string;
Related skills
More from bloominggrace/create-fullstack-service
mikro-orm-entity
Use when creating or modifying MikroORM entity files in the `entities/` folder.
10pr-title
Use when writing Pull Request titles or commit messages to follow the Korean action word convention.
5testing-vitest
Use when writing tests for NestJS + MikroORM with transaction rollback and real DB integration.
4nest-mikro-orm-service
Use when creating or modifying NestJS service files that interact with MikroORM.
1