nest
NestJS framework for building efficient, scalable Node.js server-side applications. Use when working with NestJS apps, controllers, modules, providers, dependency injection, pipes, guards, interceptors, or building REST/GraphQL APIs.
What this skill does
NestJS is a progressive Node.js framework for building efficient and scalable server-side applications. It uses TypeScript by default, supports both Express and Fastify, and provides an out-of-the-box application architecture inspired by Angular. NestJS combines elements of OOP, FP, and FRP, making it ideal for building enterprise-grade applications. > The skill is based on NestJS documentation, generated at 2026-02-01. ## CLI | Topic | Description | Reference | |-------|-------------|-----------| | CLI Overview | Scaffolding, building, and running applications | [cli-overview](references/cli-overview.md) | | Monorepo & Libraries | Workspaces, apps, shared libraries | [cli-monorepo](references/cli-monorepo.md) | ## Core References | Topic | Description | Reference | |-------|-------------|-----------| | Controllers | Route handlers, HTTP methods, request/response handling | [core-controllers](references/core-controllers.md) | | Modules | Application structure, feature modules, shared modules, dynamic modules | [core-modules](references/core-modules.md) | | Providers | Services, dependency injection, custom providers | [core-providers](references/core-providers.md) | | Dependency Injection | DI fundamentals, custom providers, scopes | [core-dependency-injection](references/core-dependency-injection.md) | | Middleware | Request/response middleware, functional middleware | [core-middleware](references/core-middleware.md) | ## Fundamentals | Topic | Description | Reference | |-------|-------------|-----------| | Pipes | Data transformation and validation pipes | [fundamentals-pipes](references/fundamentals-pipes.md) | | Guards | Authorization guards, role-based access control | [fundamentals-guards](references/fundamentals-guards.md) | | Interceptors | Aspect-oriented programming, response transformation | [fundamentals-interceptors](references/fundamentals-interceptors.md) | | Exception Filters | Error handling, custom exception filters | [fundamentals-exception-filters](references/fundamentals-exception-filters.md) | | Custom Decorators | Creating custom parameter decorators | [fundamentals-custom-decorators](references/fundamentals-custom-decorators.md) | | Dynamic Modules | Configurable modules, module configuration | [fundamentals-dynamic-modules](references/fundamentals-dynamic-modules.md) | | Execution Context | Accessing request context, metadata reflection | [fundamentals-execution-context](references/fundamentals-execution-context.md) | | Provider Scopes | Singleton, request-scoped, transient providers | [fundamentals-provider-scopes](references/fundamentals-provider-scopes.md) | | Lifecycle Events | Application and provider lifecycle hooks | [fundamentals-lifecycle-events](references/fundamentals-lifecycle-events.md) | | Lazy Loading | Loading modules on-demand for serverless | [fundamentals-lazy-loading](references/fundamentals-lazy-loading.md) | | Circular Dependency | Resolving circular dependencies with forwardRef | [fundamentals-circular-dependency](references/fundamentals-circular-dependency.md) | | Module Reference | Accessing providers dynamically with ModuleRef | [fundamentals-module-reference](references/fundamentals-module-reference.md) | | Testing | Unit testing and e2e testing with @nestjs/testing | [fundamentals-testing](references/fundamentals-testing.md) | ## Techniques | Topic | Description | Reference | |-------|-------------|-----------| | Validation | ValidationPipe, class-validator, DTO validation | [techniques-validation](references/techniques-validation.md) | | Configuration | Environment variables, ConfigModule, configuration management | [techniques-configuration](references/techniques-configuration.md) | | Database | TypeORM, Prisma, MongoDB integration | [techniques-database](references/techniques-database.md) | | Caching | Cache manager, Redis integration, auto-caching | [techniques-caching](references/techniques-caching.md) | | Logging | Built-in logger, custom loggers, JSON logging | [techniques-logging](references/techniques-logging.md) | | File Upload | File upload handling with multer, validation | [techniques-file-upload](references/techniques-file-upload.md) | | Versioning | URI, header, and media type API versioning | [techniques-versioning](references/techniques-versioning.md) | | Serialization | Response serialization with class-transformer | [techniques-serialization](references/techniques-serialization.md) | | Queues | Background job processing with BullMQ | [techniques-queues](references/techniques-queues.md) | | Task Scheduling | Cron jobs, intervals, and timeouts | [techniques-task-scheduling](references/techniques-task-scheduling.md) | | Events | Event-driven architecture with EventEmitter | [techniques-events](references/techniques-events.md) | | HTTP Module | Making HTTP requests with Axios | [techniques-http-module](references/techniques-http-module.md) | | Fastify | Using Fastify for better performance | [techniques-fastify](references/techniques-fastify.md) | | Sessions & Cookies | HTTP sessions and cookies for stateful apps | [techniques-sessions-cookies](references/techniques-sessions-cookies.md) | | Streaming & SSE | Compression, file streaming, Server-Sent Events | [techniques-compression-streaming-sse](references/techniques-compression-streaming-sse.md) | | MVC & Serve Static | Template rendering (Handlebars) and SPA static serving | [techniques-mvc-serve-static](references/techniques-mvc-serve-static.md) | ## Security | Topic | Description | Reference | |-------|-------------|-----------| | Authentication | Passport integration, JWT authentication | [recipes-authentication](references/recipes-authentication.md) | | Authorization | RBAC, claims-based, CASL integration | [security-authorization](references/security-authorization.md) | | CORS & Rate Limiting | CORS, Helmet, ThrottlerModule | [security-cors-helmet-rate-limiting](references/security-cors-helmet-rate-limiting.md) | | Encryption & Hashing | bcrypt, argon2, password hashing | [security-encryption-hashing](references/security-encryption-hashing.md) | ## OpenAPI | Topic | Description | Reference | |-------|-------------|-----------| | Swagger | OpenAPI documentation generation | [openapi-swagger](references/openapi-swagger.md) | ## WebSockets | Topic | Description | Reference | |-------|-------------|-----------| | Gateways | Real-time communication with Socket.IO/ws | [websockets-gateways](references/websockets-gateways.md) | | Guards & Exception Filters | WsException, BaseWsExceptionFilter, interceptors, pipes | [websockets-advanced](references/websockets-advanced.md) | ## Microservices | Topic | Description | Reference | |-------|-------------|-----------| | Overview | Transport layers, message patterns, events | [microservices-overview](references/microservices-overview.md) | | gRPC | Protocol Buffers, streaming, metadata, reflection | [microservices-grpc](references/microservices-grpc.md) | | Transports | Redis, Kafka, NATS, RabbitMQ configuration | [microservices-transports](references/microservices-transports.md) | ## GraphQL | Topic | Description | Reference | |-------|-------------|-----------| | Overview | Code-first and schema-first approaches | [graphql-overview](references/graphql-overview.md) | | Resolvers & Mutations | Queries, mutations, field resolvers | [graphql-resolvers-mutations](references/graphql-resolvers-mutations.md) | | Subscriptions | Real-time subscriptions with PubSub | [graphql-subscriptions](references/graphql-subscriptions.md) | | Scalars, Unions & Enums | Interfaces, scalars, union types, enums | [graphql-scalars-unions-enums](references/graphql-scalars-unions-enums.md) | ## Recipes | Topic | Description | Reference | |-------|-------------|-----------| | CRUD Generator | Nest CLI resource generator | [recipes-crud-generator](references/recipes-crud-generator.md) | | Documentation | OpenAPI/Swagger integration | [recipes-documentation](references/recipes-documentation.md) | |
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.