Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add biggora/claude-plugins-registry --skill nest-best-practicesgit clone --depth 1 https://github.com/biggora/claude-plugins-registryWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/biggora/claude-plugins-registry/nest-best-practices)<a href="https://agentmods.dev/skills/biggora/claude-plugins-registry/nest-best-practices"><img src="https://agentmods.dev/badge/skills/biggora/claude-plugins-registry/nest-best-practices/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/biggora/claude-plugins-registry/nest-best-practices"><img src="https://agentmods.dev/badge/skills/biggora/claude-plugins-registry/nest-best-practices.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00049 | $0.02375 |
| Opus 5 | $0.00024 | $0.01188 |
| Sonnet 5 | $0.00010 | $0.00475 |
| Haiku 4.5 | $0.00005 | $0.00237 |
Grade A, and why
nest-best-practices scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 137 lines — stays where its author put it; the contents beside it link to each section on GitHub.
NestJS Best Practices
Use the project's source, package manifest, lockfile, module format, HTTP adapter, and test runner as the primary context. Read only the references relevant to the task.
This skill targets NestJS 12. The npm latest tag for @nestjs/core was verified as 12.0.1 on 2026-08-29. Treat that patch number as a dated observation: re-check the registry and official documentation before recommending or performing an upgrade.
Version Gate
- Inspect
package.jsonand the lockfile for@nestjs/core,@nestjs/common, platform adapters, CLI, and companion packages. - Preserve the installed major for ordinary feature and bug-fix work. Do not introduce v12-only APIs into a v10/v11 project.
- For a new project or an explicit upgrade, verify the current stable npm tag and official migration guide. Keep all
@nestjs/*packages on compatible majors. - For v11 to v12 work, read NestJS 12 migration before editing dependencies or configuration.
- Preserve the project's CommonJS or ESM choice unless the user requests a module-format migration. Nest 12 packages are ESM, but supported CommonJS applications can consume them on compatible Node.js versions.
Working Method
- Inspect existing module boundaries and nearby patterns before generating code.
- Prefer framework primitives and the adapter already in use. Avoid Express-specific response handling in code that should remain adapter-independent.
- Keep controllers thin: translate transport input/output and delegate business rules to providers.
- Use explicit injection tokens for non-class dependencies. Export only providers that other modules actually consume.
- Choose singleton scope by default; request scope has a performance and dependency-graph cost.
- Validate untrusted input at the transport boundary. Use class-based or Standard Schema-based validation consistently with the project; do not layer both without a concrete reason.
- Keep secrets and environment-specific values outside source. Validate configuration during startup.
- Preserve stable error contracts. In Nest 12, prefer
errorCodefor machine decisions and messages for humans. - Test observable behavior through
@nestjs/testing; preserve the repository's Jest or Vitest choice. - After edits, run the narrow relevant tests, type checking, linting, and build commands already defined by the repository.
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- references/best-practices-request-lifecycle.md 3.6 KB
- references/cli-monorepo.md 2.4 KB
- references/cli-overview.md 4.1 KB
- references/core-controllers.md 3.8 KB
- references/core-dependency-injection.md 3.2 KB
- references/core-middleware.md 2.7 KB
- references/core-modules.md 2.6 KB
- references/core-providers.md 3.3 KB
- references/faq-raw-body-hybrid.md 2.7 KB
- references/fundamentals-circular-dependency.md 2.0 KB
- references/fundamentals-custom-decorators.md 2.0 KB
- references/fundamentals-dynamic-modules.md 2.5 KB
- references/fundamentals-exception-filters.md 4.6 KB
- references/fundamentals-execution-context.md 2.5 KB
- references/fundamentals-guards.md 2.7 KB
- references/fundamentals-interceptors.md 4.3 KB
- references/fundamentals-lazy-loading.md 2.0 KB
- references/fundamentals-lifecycle-events.md 2.5 KB
- references/fundamentals-module-reference.md 2.4 KB
- references/fundamentals-pipes.md 4.4 KB
- references/fundamentals-provider-scopes.md 1.9 KB
- references/fundamentals-testing.md 3.5 KB
- references/graphql-overview.md 4.6 KB
- references/graphql-resolvers-mutations.md 3.9 KB
- references/graphql-scalars-unions-enums.md 3.6 KB
- references/graphql-subscriptions.md 4.6 KB
- references/microservices-grpc.md 3.9 KB
- references/microservices-overview.md 4.4 KB
- references/microservices-transports.md 2.7 KB
- references/migration-v12.md 4.3 KB
- references/observability.md 2.3 KB
- references/openapi-swagger.md 5.4 KB
- references/recipes-authentication.md 2.1 KB
- references/recipes-cqrs.md 3.8 KB
- references/recipes-crud-generator.md 1.9 KB
- references/recipes-documentation.md 1.9 KB
- references/recipes-mongoose.md 2.9 KB
- references/recipes-prisma.md 1.8 KB
- references/recipes-terminus.md 2.9 KB
- references/recipes-typeorm.md 2.4 KB
- references/security-authorization.md 4.3 KB
- references/security-cors-helmet-rate-limiting.md 4.1 KB
- references/security-encryption-hashing.md 1.9 KB
- references/techniques-caching.md 2.8 KB
- references/techniques-compression-streaming-sse.md 4.1 KB
- references/techniques-configuration.md 3.0 KB
- references/techniques-database.md 2.5 KB
- references/techniques-events.md 3.5 KB
- references/techniques-fastify.md 2.8 KB
- references/techniques-file-upload.md 2.9 KB
- references/techniques-http-module.md 3.5 KB
- references/techniques-logging.md 4.0 KB
- references/techniques-mvc-serve-static.md 2.8 KB
- references/techniques-queues.md 3.6 KB
- references/techniques-serialization.md 3.7 KB
- references/techniques-sessions-cookies.md 3.2 KB
- references/techniques-task-scheduling.md 3.3 KB
- references/techniques-validation.md 4.0 KB
- references/techniques-versioning.md 2.7 KB
- references/websockets-advanced.md 2.3 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 10d ago First seen · 137 lines · 49 tokens per session scan A 844dc62c0275
nest-best-practices is a skill published in the GitHub repository biggora/claude-plugins-registry (2 stars, last pushed 12d ago), licensed MIT. It adds 49 tokens to every session and 2,375 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
adapter-express
Mount tRPC as Express middleware with createExpressMiddleware() from @trpc/server/adapters/express. Access Express req/res in createContext via CreateExpressContextOptions. Mount at a path prefix like app.use('/trpc', ...). Avoid global express.json() conflicting with tRPC body parsing for FormData.
trpc-router
Entry point for all tRPC skills. Decision tree routing by task: initTRPC.create(), t.router(), t.procedure, createTRPCClient, adapters, subscriptions, React Query, Next.js, links, middleware, validators, error handling, caching, FormData.
stripe-projects
Use after E2B sandbox/API access has been provisioned through Stripe Projects and the user needs to use the resulting E2B API key with the E2B CLI, JavaScript SDK, Python SDK, or Code Interpreter SDK.
chat-sdk
Build multi-platform chat bots with Chat SDK (chat npm package). Use when developers want to (1) Build a Slack, Teams, Google Chat, Discord, Telegram, GitHub, Linear, or WhatsApp bot, (2) Use Chat SDK to handle mentions, direct messages, subscribed threads, reactions, slash commands, cards, modals, files, or AI…
nestjs-expert
Creates and configures NestJS modules, controllers, services, DTOs, guards, and interceptors for enterprise-grade TypeScript backend applications. Use when building NestJS REST APIs or GraphQL services, implementing dependency injection, scaffolding modular architecture, adding JWT/Passport authentication, integrating…
fastify-best-practices
Guides development of Fastify Node.js backend servers and REST APIs using TypeScript or JavaScript. Use when building, configuring, or debugging a Fastify application — including defining routes, implementing plugins, setting up JSON Schema validation, handling errors, optimising performance, managing authentication…