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.
git clone --depth 1 https://github.com/ElsiKora/NestJS-Crud-AutomatorWrote 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/rules/elsikora/nestjs-crud-automator/file-organization)<a href="https://agentmods.dev/rules/elsikora/nestjs-crud-automator/file-organization"><img src="https://agentmods.dev/badge/rules/elsikora/nestjs-crud-automator/file-organization/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/rules/elsikora/nestjs-crud-automator/file-organization"><img src="https://agentmods.dev/badge/rules/elsikora/nestjs-crud-automator/file-organization.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.01410 | $0.01410 |
| Opus 5 | $0.00705 | $0.00705 |
| Sonnet 5 | $0.00282 | $0.00282 |
| Haiku 4.5 | $0.00141 | $0.00141 |
Grade A, and why
file-organization 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 10d 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 — 224 lines — stays where its author put it; the contents beside it link to each section on GitHub.
File Organization and Subscriber Context Types
Core Principles
- File Organization: Group files by common prefixes infinitely until only one file with unique name remains in each directory
- One File Per Entity: 1 file = 1 class/interface/type/enum
- Index Exports: Every directory with 2+ files must have index.ts
- Typed DATA Interfaces: All execution contexts must have typed DATA interfaces to provide autocomplete and type safety
- Helper Types: Create helper types that require only the Entity generic parameter
DATA Interface Structure
Function Context DATA
Base interface for function subscriber execution contexts:
export interface IApiSubscriberFunctionExecutionContextData<E extends IApiBaseEntity> {
readonly eventManager?: EntityManager;
readonly repository: Repository<E>;
}
Route Context DATA
Two interfaces for route subscriber execution contexts:
IApiSubscriberRouteExecutionContextData<E>- for before hooks (basic metadata)IApiSubscriberRouteExecutionContextDataExtended<E>- for after/error hooks (includes headers, ip, authenticationRequest)
Helper Type Pattern
Create helper types that encapsulate all generic parameters except Entity:
// Instead of requiring 3 generics:
IApiSubscriberFunctionExecutionContext<User, TApiFunctionCreateProperties<User>, IApiSubscriberFunctionExecutionContextData<User>>
// Provide a helper with just 1 generic:
export type TApiSubscriberFunctionBeforeCreateContext<E extends IApiBaseEntity> =
IApiSubscriberFunctionExecutionContext<E, TApiFunctionCreateProperties<E>, IApiSubscriberFunctionExecutionContextData<E>>;
File Organization Rules (Universal)
These rules apply to ALL files in the project, not just subscribers.
Principle: Infinite Grouping by Common Prefixes
Files with common prefixes MUST be grouped into directories. Continue grouping recursively until each directory contains only files with unique names (after removing the common prefix).
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.
- 10d ago First seen · 224 lines · 1,410 tokens per session scan A db823f311bec
file-organization is a cursor rule published in the GitHub repository ElsiKora/NestJS-Crud-Automator (279 stars, last pushed 7d ago), licensed MIT. It adds 1,410 tokens to every session, about $0.0070 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
vue-typescript-patterns
A set of coding rules for Vue 3 projects using TypeScript, a language that adds type checking to JavaScript. It covers component structure, file locations, TypeScript usage, and Pinia, a library for shared application state.
nextjs-typescript-app-cursorrules-prompt-file
Cursor rules for Next.js development with TypeScript integration.
ts
A set of TypeScript coding rules covering types, naming, file organization, error handling, and strict type checking. TypeScript is JavaScript with checks that help catch many mistakes before the program runs.
platform-pattern-2-filesystem-operations
Cursor rule "platform-pattern-2-filesystem-operations" from PaulJPhilp/EffectPatterns, covering platform pattern 2: filesystem operations and example.
handle-unexpected-errors-by-inspecting-the-cause
Cursor rule "handle-unexpected-errors-by-inspecting-the-cause" from PaulJPhilp/EffectPatterns, covering handle unexpected errors by inspecting the cause and example.
modeling-tagged-unions-with-datacase
Cursor rule "modeling-tagged-unions-with-datacase" from PaulJPhilp/EffectPatterns, covering modeling tagged unions with data.case and example.