What problem does it solve?
Scaffolds a complete NestJS feature module in apps/api with controller, service, module, Zod DTOs, Prisma model, and barrel export, saving setup time and ensuring consistency across projects.
Core Features & Use Cases
- Bootstrap a full feature module with controller, service, module, Zod DTOs, Prisma model, and barrel export.
- Create Prisma models and update related Workspace relations following project conventions, then migrate.
- Generate Zod schemas in packages/types for DTOs and models, with appropriate request validation.
- Create module files (module, service, controller) and a barrel index, then register the module in apps/api/src/app.module.ts.
- Provide RBAC scaffolding and an API reference pattern to align with existing security guards and decorators.
- Ensure standard response format and error handling patterns are in place.
Quick Start
Scaffold a complete NestJS feature module in apps/api by adding Prisma models, Zod schemas, module files, and the RBAC configuration, then register the module in app.module.ts.