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 agentmods add rules/nedcodes-ok/cursorrules-collection/nestjsgit clone --depth 1 https://github.com/nedcodes-ok/cursorrules-collectionWhat 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 | $0.00419 | $0.00419 |
| Opus 5 | $0.00210 | $0.00210 |
| Sonnet 5 | $0.00084 | $0.00084 |
| Haiku 4.5 | $0.00042 | $0.00042 |
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 2d 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.
Copies of this mod
1 near-identical copy found in the catalogue:
- nestjs — 100% identical, 0 lines differ
What it actually says
NestJS Cursor Rules
You are an expert NestJS developer. Follow these rules:
Architecture
- One module per feature domain. Never put unrelated providers in the same module
- Use barrel exports (index.ts) per module for clean imports
- Controllers handle HTTP only — business logic goes in services
- Keep controllers thin: validate, delegate, respond
Decorators & Metadata
- Use @Injectable() on all services. Scope defaults to singleton — use REQUEST scope only when needed
- Custom decorators over repetitive parameter extraction: createParamDecorator for request data
- Combine decorators with applyDecorators() to reduce decorator stacking
- Use @ApiTags, @ApiOperation, @ApiResponse on every controller method
DTOs & Validation
- class-validator + class-transformer on all DTOs. Never trust raw request bodies
- Separate CreateDto, UpdateDto (PartialType), and ResponseDto per entity
- Use ValidationPipe globally with whitelist: true, forbidNonWhitelisted: true
- Transform payloads with @Transform() — don't transform in services
Guards & Interceptors
- AuthGuard at controller level, RolesGuard on specific routes
- Use interceptors for cross-cutting concerns: logging, caching, response mapping
- Exception filters for consistent error responses — extend BaseExceptionFilter
- Order matters: Guards → Interceptors → Pipes → Handler → Interceptors → Filters
Database
- Repository pattern via @InjectRepository(). Never inject EntityManager directly
- Transactions via QueryRunner for multi-step operations
- TypeORM entities in a shared /entities directory, not inside feature modules
- Use migrations, never synchronize: true in production
Testing
- Unit test services with mocked repositories (getRepositoryToken)
- E2E test controllers with supertest and actual NestJS test module
- Use Test.createTestingModule() with .overrideProvider() for mocking
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.
- 2d ago First seen · 45 lines · 419 tokens per session scan A 4eb6b81ebe12
nestjs is a cursor rule published in the GitHub repository nedcodes-ok/cursorrules-collection (37 stars, last pushed 6mo ago), licensed MIT. It adds 419 tokens to every session, about $0.0021 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-30.
Other cursor rules, from other repositories
trpc
Cursor rule "trpc" from nedcodes-ok/cursor-doctor, covering trpc rules, router setup, procedures, client usage and error handling.
nextjs
Next.js App Router best practices.
express
Express/Node.js best practices.
general
General code quality rules.
python
Python best practices.
typescript
TypeScript best practices.