file-organization

file-organization is a cursor rule for Cursor from squirrelogic/mcp-feature-discussion. It costs 950 tokens per session, scanned A, a copy of file-organization, MIT.

File-organization rules for keeping each class, standalone function, and complex type in its own file, with consistent kebab-case names and type-based suffixes.

In plain words
What is it for?
Use them when splitting code into files and naming TypeScript classes, functions, interfaces, and types.
Why use it?
They make definitions easier to find and prevent unrelated code from accumulating in large files.

Cursor rule for Cursor

Written for Cursor: installed under .cursor/.

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.

agentmods
npx agentmods add rules/squirrelogic/mcp-feature-discussion/file-organization
Clone the repo
git clone --depth 1 https://github.com/squirrelogic/mcp-feature-discussion

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/squirrelogic/mcp-feature-discussion/file-organization.svg)](https://agentmods.dev/rules/squirrelogic/mcp-feature-discussion/file-organization)
Your own site
<a href="https://agentmods.dev/rules/squirrelogic/mcp-feature-discussion/file-organization"><img src="https://agentmods.dev/badge/rules/squirrelogic/mcp-feature-discussion/file-organization.svg" alt="Measured on agentmods" height="20"></a>
Per session 950 This file is loaded in full into every session.
When invoked 950 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod 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.00950 $0.00950
Opus 5 $0.00475 $0.00475
Sonnet 5 $0.00190 $0.00190
Haiku 4.5 $0.00095 $0.00095

Measured 5d ago against content hash d8a0edb7497d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, 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 5d 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.

Origin

This is a copy

100% identical to file-organization — 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.

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

How it starts

The opening of the file, as written. The whole thing — 162 lines — stays where its author put it; the contents beside it link to each section on GitHub.

File Organization

Guidelines for organizing code into files following single responsibility principle.

actions:

  • type: suggest message: | When organizing code into files, follow these rules:

    1. Single Definition Per File:

      • Each class should be in its own file
      • Each standalone function should be in its own file
      • Each complex type/interface (more than one line) should be in its own file Example:
      // Bad: Multiple definitions in one file
      // user-types.ts
      interface UserCredentials {
        username: string;
        password: string;
      }
      interface UserProfile {
        id: string;
        name: string;
        email: string;
      }
      class UserService {
        // ...
      }
      
      // Good: Separate files for each definition
      // user-credentials.ts
      interface UserCredentials {
        username: string;
        password: string;
      }
      
      // user-profile.ts
      interface UserProfile {
        id: string;
        name: string;
        email: string;
      }
      
      // user-service.ts
      class UserService {
        // ...
      }
      
    2. File Naming Conventions:

      • Use kebab-case for filenames
      • Name files after their primary export
      • Use suffixes to indicate type: .interface.ts, .type.ts, .service.ts, etc. Example:
      // Good file names:
      user-credentials.interface.ts
      user-profile.interface.ts
      user-service.ts
      create-user.function.ts
      
    3. Simple Type Exceptions:

      • Single-line type aliases and interfaces can be co-located if they're tightly coupled Example:
      // Acceptable in the same file:
      type UserId = string;
      type UserRole = 'admin' | 'user';
      interface BasicUser { id: string; role: UserRole; }
      
    4. Barrel File Usage:

      • Use index.ts files to re-export related components
      • Keep barrel files simple - export only, no implementations Example:
      // users/index.ts
      export * from './user-credentials.interface';
      export * from './user-profile.interface';
      export * from './user-service';
      
    5. Directory Structure:

      • Group related files in directories
      • Use feature-based organization Example:
      src/
      ├── users/
      │   ├── interfaces/
      │   │   ├── user-credentials.interface.ts
      │   │   └── user-profile.interface.ts
      │   ├── services/
      │   │   └── user-service.ts
      │   └── index.ts
      └── ...
      
    6. Import Organization:

      • Keep imports organized by type (external, internal, relative)
      • Use explicit imports over namespace imports Example:
      // External imports
      import { Injectable } from '@nestjs/common';
      import { v4 as uuid } from 'uuid';
      
      // Internal imports (from your app)
      import { UserProfile } from '@/users/interfaces';
      import { DatabaseService } from '@/database';
      
      // Relative imports (same feature)
      import { UserCredentials } from './user-credentials.interface';
      

examples:

  • input: | // Bad: Multiple concerns in one file interface UserData { id: string; name: string; }

    class UserService { getUser(id: string) { } }

    function validateUser(user: UserData) { } output: | // user-data.interface.ts interface UserData { id: string; name: string; }

Read the full file on GitHub · 162 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. 5d ago First seen · 162 lines · 950 tokens per session scan A d8a0edb7497d

Subscribe to this mod's changes

file-organization is a cursor rule published in the GitHub repository squirrelogic/mcp-feature-discussion (1 stars, last pushed 1y ago), licensed MIT. It adds 950 tokens to every session, about $0.0047 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to file-organization, differing in 0 lines, and is treated as a copy.