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/cursor-doctor/nestjsgit clone --depth 1 https://github.com/nedcodes-ok/cursor-doctorWhat 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.
This is a copy
100% identical to nestjs — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
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/cursor-doctor (9 stars, last pushed 5mo 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. It is 100% identical to nestjs, differing in 0 lines, and is treated as a copy.
Other cursor rules, from other repositories
java
Modern Java: records, sealed classes, streams, virtual threads.
javascript
Modern JavaScript: ES2023+, async patterns, common traps.
accessibility
Accessibility: semantic HTML, ARIA, keyboard navigation, testing.
cross-tool-config
Cross-tool AI config: what transfers between Cursor, Claude Code, Copilot, Windsurf, Gemini, and Codex.
angular
Angular: signals, standalone components, RxJS patterns.
django
Django: models, views, ORM best practices.