Qnestjs-expert

Qnestjs-expert is a skill for Claude Code, Codex from inho-team/qe-mcp. It costs 94 tokens per session (2,076 once invoked), scanned A, original, MIT.

A guide for NestJS, a TypeScript framework for building structured server applications and APIs. It uses modules, controllers, services, and dependency injection to organize backend code.

In plain words
What is it for?
Use it to build REST or GraphQL services, create modules and endpoints, add guards and validation, configure dependency injection, and migrate NestJS applications.
Why use it?
It helps keep large APIs modular and makes common concerns such as validation, authentication, testing, and framework upgrades easier to manage.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to build REST or GraphQL services, create modules and endpoints, add guards and validation, configure dependency injection, and migrate NestJS applications.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/inho-team/qe-mcp/qnestjs-expert
Install

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.

Any agent
npx skills add inho-team/qe-mcp --skill qnestjs-expert
Clone the repo
git clone --depth 1 https://github.com/inho-team/qe-mcp

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for Qnestjs-expert

README.md
[![agentmods](https://agentmods.dev/badge/skills/inho-team/qe-mcp/qnestjs-expert/github.svg)](https://agentmods.dev/skills/inho-team/qe-mcp/qnestjs-expert)
Your own site
<a href="https://agentmods.dev/skills/inho-team/qe-mcp/qnestjs-expert"><img src="https://agentmods.dev/badge/skills/inho-team/qe-mcp/qnestjs-expert/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.

agentmods 80×15 button for Qnestjs-expert

Your own site · 80×15
<a href="https://agentmods.dev/skills/inho-team/qe-mcp/qnestjs-expert"><img src="https://agentmods.dev/badge/skills/inho-team/qe-mcp/qnestjs-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 94 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,076 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00094 $0.02076
Opus 5 $0.00047 $0.01038
Sonnet 5 $0.00019 $0.00415
Haiku 4.5 $0.00009 $0.00208

Measured 11d ago against content hash f9228aa68cb3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

Qnestjs-expert 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 11d 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.

expert-library/packs/core-experts/skills/Qnestjs-expert/SKILL.md · 239 lines

How it starts

The opening of the file, as written. The whole thing — 239 lines — stays where its author put it; the contents beside it link to each section on GitHub.

NestJS Expert

Senior NestJS specialist with deep expertise in enterprise-grade, scalable TypeScript backend applications.

Current Version Notes (reviewed 2026-07-12)

  • Verified current major: NestJS 11 (npm view @nestjs/core version -> 11.1.28).
  • Official source checked: NestJS migration guide for version 10 to 11.
  • NestJS 11 has a small set of breaking changes; still run dependency compatibility checks across @nestjs/*, rxjs, class-validator, the HTTP adapter, and testing utilities.
  • If using the Express adapter, account for Express v5 behavior changes in middleware, route matching, and error handling.
  • For migrations, update framework packages together and verify with npm run test, npm run test:e2e, and nest info.

Core Workflow

  1. Analyze requirements — Identify modules, endpoints, entities, and relationships
  2. Design structure — Plan module organization and inter-module dependencies
  3. Implement — Create modules, services, and controllers with proper DI wiring
  4. Secure — Add guards, validation pipes, and authentication
  5. Verify — Run npm run lint, npm run test, and confirm DI graph with nest info
  6. Test — Write unit tests for services and E2E tests for controllers

Reference Guide

Load detailed guidance based on context:

Topic Reference Load When
Controllers references/controllers-routing.md Creating controllers, routing, Swagger docs
Services references/services-di.md Services, dependency injection, providers
DTOs references/dtos-validation.md Validation, class-validator, DTOs
Authentication references/authentication.md JWT, Passport, guards, authorization
Testing references/testing-patterns.md Unit tests, E2E tests, mocking
Express Migration references/migration-from-express.md Migrating from Express.js to NestJS

Code Patterns

Basic: Controller + Service with TSDoc

// users.service.ts
import { Injectable } from '@nestjs/common';

/**
 * UsersService handles user business logic and database operations.
 * @example const user = await usersService.create({ email: '[email protected]' });
 */
@Injectable()
export class UsersService {
  /**
   * Creates a new user in the database.
   * @param createUserDto - DTO containing email and password
   * @returns The created user entity
   * @throws ConflictException if email already exists
   */
  async create(createUserDto: CreateUserDto): Promise<User> {
    // implementation
  }
}

// users.controller.ts
import { Body, Controller, Post, HttpCode, HttpStatus } from '@nestjs/common';
import { ApiTags, ApiCreatedResponse } from '@nestjs/swagger';

/** Handles user-related HTTP requests. */
@ApiTags('users')
@Controller('users')
export class UsersController {
  constructor(private readonly usersService: UsersService) {}

  /** Creates a new user. */
  @Post()
  @HttpCode(HttpStatus.CREATED)
  @ApiCreatedResponse({ description: 'User created successfully.' })
  create(@Body() createUserDto: CreateUserDto) {
    return this.usersService.create(createUserDto);
  }
}

Read the full file on GitHub · 239 lines

Files

What ships with it

6 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.

Changes

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.

  1. 11d ago First seen · 239 lines · 94 tokens per session scan A f9228aa68cb3

Subscribe to this mod's changes

Qnestjs-expert is a skill published in the GitHub repository inho-team/qe-mcp (0 stars, last pushed 2mo ago), licensed MIT. It adds 94 tokens to every session and 2,076 once invoked, about $0.0005 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-09-01.

Related

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/trpc · 67 tokens

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.

trpc/trpc · 59 tokens

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.

e2b-dev/E2B · 51 tokens

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…

vercel-labs/open-agents · 191 tokens

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…

Jeffallan/claude-skills · 107 tokens

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…

mcollina/skills · 137 tokens