What problem does it solve? Building enterprise Node.js applications with Nest.js often leads to cryptic dependency injection errors, circular dependencies, misconfigured JWT authentication, and fragile test setups that are hard to debug without deep framework knowledge. ## Core Features & Use Cases - Dependency Injection Debugging: Resolves "Nest can't resolve dependencies" errors, circular dependencies, and module export misconfigurations using proven fixes from real GitHub issues. - Testing Strategy Guidance: Sets up unit, integration, and e2e tests with Jest, Supertest, and @nestjs/testing, including proper mocking of repositories and JwtService. - Database & Auth Integration: Configures TypeORM, Mongoose, and Passport.js/JWT authentication with correct connection handling and guard implementation. - Use Case: When your Nest.js app fails to start with "Unknown authentication strategy 'jwt'", the skill detects your setup, identifies the wrong passport strategy import, and applies the verified fix. ## Quick Start Ask the assistant to diagnose why your Nest.js application throws a dependency resolution error at startup and fix the module configuration.