no-noisy-abstractions

no-noisy-abstractions is a cursor rule for Cursor from ElsiKora/NestJS-Crud-Automator. It costs 343 tokens per session, scanned A, original, MIT.

A TypeScript coding rule that discourages small abstractions used only once or to restate obvious details. It favors inline code unless a helper, type, map, or constant expresses shared meaning or a non-trivial rule.

In plain words
What is it for?
Use it when reviewing or writing TypeScript, especially when deciding whether to extract a local helper, type, map, constant, or other one-off abstraction.
Why use it?
It keeps simple code paths easier to follow and avoids making readers jump between files or declarations. It still permits abstractions that remove real duplication or clarify important meaning.

Cursor rule for Cursor

Written for Cursor: installed under .cursor/.

Good fit Use it when reviewing or writing TypeScript, especially when deciding whether to extract a local helper, type, map, constant, or other one-off abstraction.

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

README.md
[![agentmods](https://agentmods.dev/badge/rules/elsikora/nestjs-crud-automator/no-noisy-abstractions/github.svg)](https://agentmods.dev/rules/elsikora/nestjs-crud-automator/no-noisy-abstractions)
Your own site
<a href="https://agentmods.dev/rules/elsikora/nestjs-crud-automator/no-noisy-abstractions"><img src="https://agentmods.dev/badge/rules/elsikora/nestjs-crud-automator/no-noisy-abstractions/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 no-noisy-abstractions

Your own site · 80×15
<a href="https://agentmods.dev/rules/elsikora/nestjs-crud-automator/no-noisy-abstractions"><img src="https://agentmods.dev/badge/rules/elsikora/nestjs-crud-automator/no-noisy-abstractions.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 343 This file is loaded in full into every session.
When invoked 343 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.00343 $0.00343
Opus 5 $0.00171 $0.00171
Sonnet 5 $0.00069 $0.00069
Haiku 4.5 $0.00034 $0.00034

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

Security

Grade A, and why

no-noisy-abstractions 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 12d 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/no-noisy-abstractions.mdc · 42 lines

What it actually says

No Noisy Micro-Abstractions

Do not extract local-only types, constants, maps, or helpers just to name a one-off detail.

Prefer inline code when the abstraction:

  • is used once or only inside one small function;
  • only restates obvious enum/key mapping;
  • exists only to satisfy style preferences, not domain meaning;
  • makes the reader jump away from the code path to understand simple logic.

Extract only when it carries real project meaning, removes meaningful duplication, or clarifies a non-trivial invariant.

For project constants, do not export raw leaf constants directly from src/constant/** for new internal metadata keys or defaults. Export a grouped *_CONSTANT object and make callers use object properties.

// Bad: exported raw key invites direct imports and bypasses the grouped constant API.
export const DTO_AUTO_CONTEXT_METADATA_KEY = "crud-automator:auto-dto-context";

// Good: consumers use AUTO_CONTEXT_DTO_CONSTANT.METADATA_KEY.
export const AUTO_CONTEXT_DTO_CONSTANT = {
	METADATA_KEY: "crud-automator:auto-dto-context",
} as const;
// Bad: noisy top-level extraction for a one-off mapping.
const PARAMETER_TYPE_BY_DTO_TYPE = {
	[EApiDtoType.BODY]: RouteParamtypes.BODY,
};

// Good: keep the mapping where the route metadata is built.
for (const { dto, parameterType } of [{ dto: bodyDto, parameterType: RouteParamtypes.BODY }]) {
	// ...
}
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. 12d ago First seen · 42 lines · 343 tokens per session scan A 1cdd346b82ab

Subscribe to this mod's changes

no-noisy-abstractions is a cursor rule published in the GitHub repository ElsiKora/NestJS-Crud-Automator (278 stars, last pushed 9d ago), licensed MIT. It adds 343 tokens to every session, about $0.0017 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.