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 inho-team/qe-mcp --skill qnestjs-expertgit clone --depth 1 https://github.com/inho-team/qe-mcpWrote 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/inho-team/qe-mcp/qnestjs-expert)<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.
<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>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.00094 | $0.02076 |
| Opus 5 | $0.00047 | $0.01038 |
| Sonnet 5 | $0.00019 | $0.00415 |
| Haiku 4.5 | $0.00009 | $0.00208 |
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.
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, andnest info.
Core Workflow
- Analyze requirements — Identify modules, endpoints, entities, and relationships
- Design structure — Plan module organization and inter-module dependencies
- Implement — Create modules, services, and controllers with proper DI wiring
- Secure — Add guards, validation pipes, and authentication
- Verify — Run
npm run lint,npm run test, and confirm DI graph withnest info - 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);
}
}
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.
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.
- 11d ago First seen · 239 lines · 94 tokens per session scan A f9228aa68cb3
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.
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…