no-barrel-files

A module-structure rule that avoids barrel files, such as index.ts files used only to re-export code from other modules.

In plain words
What is it for?
It guides package exports and imports by favoring specific module paths and small, intentional public APIs.
Why use it?
Direct imports make dependencies clearer and can reduce unnecessary work when the project is built.

Cursor rule for Codex

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/prisma/prisma-next/no-barrel-files
Clone the repo
git clone --depth 1 https://github.com/prisma/prisma-next

Made for: Codex.

Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 732 The whole file, excluding the scripts and references it only reads on demand.
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 $0.00000 $0.00732
Opus 5 $0.00000 $0.00366
Sonnet 5 $0.00000 $0.00146
Haiku 4.5 $0.00000 $0.00073

Measured 3d ago against content hash 2368e30ab726, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

no-barrel-files 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 3d 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 no-barrel-files — 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.

.agents/rules/no-barrel-files.mdc · 83 lines

How it starts

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

Avoid Barrel Files and Re-exports

Core Principle

Always avoid barrel files (index.ts files that only re-export from other modules) and prefer explicit, direct imports. This improves build performance, reduces bundle size, and makes dependencies clearer.

Guidelines

1. No Barrel Files

  • Never create index.ts files that only contain export * from './other-module'
  • Never create index.ts files that only contain export { something } from './other-module'
  • Prefer explicit imports: import { connect } from '@prisma/runtime/connection'

2. Explicit Exports Only

  • Only create index.ts files when they contain actual implementation code
  • Use exports/index.ts pattern only for explicit, intentional API surfaces
  • Each package should have a clear, minimal public API

3. Direct Imports

  • Import directly from the specific module: import { sql } from '@prisma/sql/builder'
  • Avoid: import { sql } from '@prisma/sql' (barrel import)
  • This makes dependencies explicit and improves tree-shaking

4. Package Structure

  • Each package should expose specific subpaths in package.json exports
  • Example: "./builder": { "types": "./dist/builder.d.ts", "import": "./dist/builder.js" }
  • Consumers import from specific subpaths, not from barrel files

5. Benefits

  • Build Performance: Faster builds due to fewer re-export chains
  • Bundle Size: Better tree-shaking and smaller bundles
  • Dependency Clarity: Clear understanding of what each module depends on
  • IDE Performance: Faster IntelliSense and type checking
  • Debugging: Easier to trace where code comes from

6. Examples

BAD - Barrel file:

// packages/sql/src/index.ts
export { sql } from './builder';
export { makeT } from './maket';
export { compileToSQL } from './compiler';
export * from './types';

GOOD - Direct imports:

// Consumer code
import { sql } from '@prisma/sql/builder';
import { makeT } from '@prisma/sql/maket';
import { compileToSQL } from '@prisma/sql/compiler';

Read the full file on GitHub · 83 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. 3d ago First seen · 83 lines · 0 tokens per session scan A 2368e30ab726

Subscribe to this mod's changes

no-barrel-files is a cursor rule published in the GitHub repository prisma/prisma-next (420 stars, last pushed 8d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 732 tokens. A static security scan graded it A with 0 findings. It is 100% identical to no-barrel-files, differing in 0 lines, and is treated as a copy.