nestjs

nestjs is a cursor rule for Cursor from kok-o/koko-contextos-agents. It costs 0 tokens per session (810 once invoked), scanned A, original, MIT.

A set of rules for organizing NestJS applications, a TypeScript framework for building server-side software, into clear feature modules and shared services.

In plain words
What is it for?
Structuring modules, applying dependency injection, separating domains, and organizing repositories, entities, request types, and tests.
Why use it?
It reduces tangled code by keeping controllers, business logic, data access, and common utilities in defined places.

Cursor rule for Cursor

Written for Cursor: installed under .cursor/.

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.

agentmods
npx agentmods add rules/kok-o/koko-contextos-agents/nestjs
Clone the repo
git clone --depth 1 https://github.com/kok-o/koko-contextos-agents

Made for: Cursor.

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 nestjs

README.md
[![agentmods](https://agentmods.dev/badge/rules/kok-o/koko-contextos-agents/nestjs.svg)](https://agentmods.dev/rules/kok-o/koko-contextos-agents/nestjs)
Your own site
<a href="https://agentmods.dev/rules/kok-o/koko-contextos-agents/nestjs"><img src="https://agentmods.dev/badge/rules/kok-o/koko-contextos-agents/nestjs.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 810 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00000 $0.00810
Opus 5 $0.00000 $0.00405
Sonnet 5 $0.00000 $0.00162
Haiku 4.5 $0.00000 $0.00081

Measured 5d ago against content hash 3f2261e876b7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

nestjs 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 5d 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.

.cursor/rules/nestjs.mdc · 143 lines

How it starts

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

Skill: NestJS

NestJS

Overview

A brief summary of what the skill does and its core philosophy.

When to Use

Context for when this skill is applicable.

Rules & Patterns

NestJS — Best Practices

Module Architecture

  • One module per domainUsersModule, AuthModule, OrdersModule
  • Feature modules — encapsulate related controllers, services, repositories
  • Shared module — for cross-cutting concerns (logging, config, utils)
  • Core module — singleton services (database, auth guards)
src/
├── modules/
│   ├── users/
│   │   ├── users.module.ts
│   │   ├── users.controller.ts
│   │   ├── users.service.ts
│   │   ├── users.repository.ts
│   │   ├── dto/
│   │   │   ├── create-user.dto.ts
│   │   │   └── update-user.dto.ts
│   │   ├── entities/
│   │   │   └── user.entity.ts
│   │   └── users.spec.ts
│   └── auth/
├── shared/
│   ├── guards/
│   ├── interceptors/
│   ├── pipes/
│   └── filters/
├── config/
└── app.module.ts

Dependency Injection

@Injectable()
export class UsersService {
  constructor(
    @InjectRepository(User) private readonly usersRepo: Repository<User>,
    private readonly configService: ConfigService,
  ) {}
}
  • Prefer constructor injection
  • Use custom providers for complex setup
  • Scope: default is Singleton, use REQUEST scope only when needed

DTOs and Validation

import { IsEmail, IsString, MinLength } from 'class-validator';

export class CreateUserDto {
  @IsEmail()
  email: string;

  @IsString()
  @MinLength(2)
  name: string;
}
  • Always use DTOs for request validation
  • Use ValidationPipe globally
  • Separate Create/Update/Response DTOs

Guards, Interceptors, Pipes

Type Purpose
Guards Authentication, authorization
Interceptors Logging, transformation, caching
Pipes Validation, transformation
Filters Exception handling

Execution order: Guards → Interceptors → Pipes → Handler → Interceptors → Filters

Read the full file on GitHub · 143 lines

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. 5d ago First seen · 143 lines · 0 tokens per session scan A 3f2261e876b7

Subscribe to this mod's changes

nestjs is a cursor rule published in the GitHub repository kok-o/koko-contextos-agents (2 stars, last pushed yesterday), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 810 tokens. 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.