nestjs-maintenance

Run ordered NestJS maintenance scripts until all pass.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/cromesdk/ai-skills --skill nestjs-maintenance
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: nestjs-maintenance
Source: https://github.com/cromesdk/ai-skills/tree/main/skills/nestjs/nestjs-maintenance
Command: npx skills add https://github.com/cromesdk/ai-skills --skill nestjs-maintenance

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill ensures your NestJS backend code meets quality standards by running a comprehensive set of maintenance scripts, catching issues before they reach production.

Core Features & Use Cases

  • Automated Quality Gates: Executes documentation generation, cleaning, building, formatting, linting, and code coverage tests in a strict, predefined order.
  • Deterministic Workflow: Guarantees consistent execution and reporting, mirroring CI/CD pipeline checks.
  • Failure Handling: Automatically attempts to fix identified issues and reruns the entire pipeline until all checks pass.
  • Use Case: Run this skill before committing code to ensure all backend quality gates are satisfied, or after a refactor to validate the integrity of your NestJS application.

Quick Start

Use the nestjs-maintenance skill to verify the backend quality of this project.

Frequently Asked Questions about nestjs-maintenance

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

FAQPage Schema
How do I automate NestJS backend quality gate verification before committing code?

NestJS backend maintenance verification works by executing ordered package.json scripts—docs, clean, build, format, lint, and test:cov—in a strict sequence. It automatically fixes failures and reruns the entire pipeline until all checks pass in one uninterrupted sequence.

Do I need specific package.json scripts to run backend maintenance checks?

Yes, running backend maintenance checks requires a working package manager and specific scripts defined in package.json. The pipeline directly executes docs, clean, build, format, lint, and test:cov scripts, so these must exist for the verification loop to run.

What is the best way to validate NestJS code integrity after a refactor?

The best way to validate NestJS code integrity after a refactor is to run a deterministic maintenance verification loop. It mirrors CI/CD pipeline checks by executing build, lint, and test coverage scripts, automatically fixing failures until all pass.

How does the maintenance pipeline handle lint or build failures?

The maintenance pipeline handles lint or build failures by automatically attempting to fix identified issues. After a fix attempt, it reruns the entire ordered script sequence from the beginning until all quality gates pass in one uninterrupted sequence.

Can I use this maintenance verification for CI parity checks in NestJS?

Yes, you can use this maintenance verification for CI parity checks in NestJS. It provides a deterministic workflow that mirrors CI/CD pipeline checks by running a strict, predefined order of formatting, linting, building, and test coverage scripts.