file-organization

file-organization is a cursor rule for Cursor from ElsiKora/NestJS-Crud-Automator. It costs 1,410 tokens per session, scanned A, original, MIT.

A set of TypeScript rules for organizing files and defining typed execution-context data for function and route subscribers. Subscribers are pieces of code that run when a function or web route reaches a particular event or stage.

In plain words
What is it for?
Grouping files by shared name prefixes, keeping one class or type per file, adding index exports to multi-file directories, and defining context types for function handlers and before, after, or error route hooks.
Why use it?
Consistent file placement and typed context objects make related code easier to find and help editors catch incorrect data use while developers work.

Cursor rule for Cursor

Written for Cursor: installed under .cursor/.

Good fit Grouping files by shared name prefixes, keeping one class or type per file, adding index exports to multi-file directories, and defining context types for function handlers and before, after, or error route hooks.

Compare 6 cursor rules from other repositories ↓
Install with agentmods
npx agentmods add rules/elsikora/nestjs-crud-automator/file-organization
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.

Clone the repo
git clone --depth 1 https://github.com/ElsiKora/NestJS-Crud-Automator

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 file-organization

README.md
[![agentmods](https://agentmods.dev/badge/rules/elsikora/nestjs-crud-automator/file-organization/github.svg)](https://agentmods.dev/rules/elsikora/nestjs-crud-automator/file-organization)
Your own site
<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.

agentmods 80×15 button for file-organization

Your own site · 80×15
<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>
Per session 1,410 This file is loaded in full into every session.
When invoked 1,410 The same file — it is already loaded in full.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.01410 $0.01410
Opus 5 $0.00705 $0.00705
Sonnet 5 $0.00282 $0.00282
Haiku 4.5 $0.00141 $0.00141

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

Security

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.

.cursor/rules/file-organization.mdc · 224 lines

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

  1. File Organization: Group files by common prefixes infinitely until only one file with unique name remains in each directory
  2. One File Per Entity: 1 file = 1 class/interface/type/enum
  3. Index Exports: Every directory with 2+ files must have index.ts
  4. Typed DATA Interfaces: All execution contexts must have typed DATA interfaces to provide autocomplete and type safety
  5. 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).

Read the full file on GitHub · 224 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. 10d ago First seen · 224 lines · 1,410 tokens per session scan A db823f311bec

Subscribe to this mod's changes

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.