backend

Automate backend development for Lead360 with NestJS APIs and Prisma schemas.

Updated Jan 2, 2026
One-click install
npx skills add https://github.com/ludsonaiello/lead360 --skill backend-ludsonaiello
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: backend
Source: https://github.com/ludsonaiello/lead360/tree/main/.claude/skills/backend
Command: npx skills add https://github.com/ludsonaiello/lead360 --skill backend-ludsonaiello

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Backend teams face the burden of building secure, scalable APIs and robust data models for multi-tenant platforms.

Core Features & Use Cases

  • NestJS API development: scaffold modular, strongly-typed controllers and services.
  • Prisma schema design: multi-tenant data models with proper relations, indexes, and migrations.
  • Service layer discipline: clear boundaries, testability, and audit-logging compliance per sprint.
  • Use Case: Deliver tenant-scoped APIs with RBAC, JWT authentication, and data isolation.

Quick Start

Start the dev sprint by booting the NestJS server, applying migrations, and running the sprint's tests.

Frequently Asked Questions about backend

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I build a multi-tenant REST API with NestJS and Prisma?

Build multi-tenant REST APIs by scaffolding modular NestJS controllers and designing Prisma schemas with proper relations and indexes. This enforces airtight tenant isolation, JWT authentication, and RBAC for secure service layers.

What is the best way to enforce data isolation in a multi-tenant Prisma schema?

Enforce data isolation in a multi-tenant Prisma schema by applying strict tenant-scoping rules at the service layer. This ensures airtight multi-tenant enforcement, preventing cross-tenant data access in your NestJS application.

How do I add JWT authentication and RBAC to a NestJS backend?

Add JWT authentication and RBAC to a NestJS backend by implementing secure modular controllers and service layers. This provides robust REST endpoints with strict role-based access control and audit logging compliance per sprint.

Does this NestJS backend approach support audit logging for compliance?

Yes, the NestJS backend approach supports audit logging by enforcing clear service layer boundaries and compliance per sprint. It integrates robust audit-logging directly into the REST endpoints and data access workflows.

Can I use Prisma migrations for multi-tenant database schemas in NestJS?

Yes, you can use Prisma migrations to manage multi-tenant database schemas in NestJS. The process involves designing DBA-friendly schemas with proper relations and indexes, then applying migrations to support tenant isolation.