Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Wires dependency-cruiser into a TypeScript repo so each package is a deep module — implementation hidden in subfolders, reachable only through entry-point files. Use when the user wants deep-module enforcement or dependency-cruiser setup.
.claude/skills/fradser-setup-ts-deep-modules/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-08 | ✗→✓ | ▲ Improved | 46% | 0% |
| case-10 | ✗→✓ | ▲ Improved | 22% | 0% |
| case-11 | ✗→✓ | ▲ Improved | -22% | 0% |
| case-12 | ✗→✓ | ▲ Improved | 52% | 0% |
| case-13 | ✗→✓ | ▲ Improved | -11% | 0% |
Make every package in this repo a deep module: a lot of behaviour behind a small interface. A package's public surface is its entry points — the files at the package root — and everything in its subfolders is hidden. This skill installs dependency-cruiser and the rules that make the entry points the only way in, then proves the rules bite.
For the vocabulary (deep module, interface, seam, depth), run the /mattpocock:codebase-design skill — use its language throughout.
src/packages/
<name>/
index.ts ← an entry point (public). Import this from outside.
client.ts ← another entry point. Packages may expose SEVERAL.
lib/ ← implementation: hidden from outside, free to import each other.
tests/ ← co-located tests + fixtures (a subfolder, so private).The public surface is the package's root files — not one designated index.ts. By convention implementation lives in lib/ and tests in tests/, giving every package the same two-folder shape. The rule itself is general, though: anything in any subfolder is private, so you never extend the config to add a folder.
Four rules, all error:
<pkg>/tests/ may import any package's entry points and their own tests/ fixtures, but never any package's subfolder internals (not even their own). Integration tests across packages are fine; deep imports are not.Entry points, not a barrel. Because the public surface is every root file, a package can expose several small entry points (index.ts, client.ts, server.ts) instead of funnelling everything through one giant index.ts. Barrel files that re-export a whole subtree are discouraged — keep entry points small and hide implementation in subfolders.
Layering (which packages may depend on which) is a different concern and is left as a commented stub in the config for this repo to fill in.
pnpm-lock.yaml → pnpm, yarn.lock → yarn, bun.lockb → bun, else npm. Use it for every command below (pnpm/yarn/npm run/bunx).src/ exists use src/packages, else packages. Confirm the choice with the user if the repo already has a different obvious convention..dependency-cruiser.* file. If one exists, do not overwrite it: merge the four rules and the options in, and tell the user what you added.Done when: package manager, packages root, and existing-config status are all known.
Install dependency-cruiser as a devDependency with the detected package manager.
Done when: dependency-cruiser is in devDependencies.
Copy dependency-cruiser.config.cjs to the repo root as .dependency-cruiser.cjs. Set PACKAGES_ROOT to the root detected in step 1. The rules are path-depth based and extension-agnostic, so nothing else needs adapting.
Done when: .dependency-cruiser.cjs exists with the correct PACKAGES_ROOT, and the four forbidden rules are present.
lint:boundaries script: depcruise <packages-root> (or depcruise src).check / ci / validate script). Do not touch tsconfig or add path aliases.lint:boundaries and tell the user to include it in CI.Done when: lint:boundaries exists and runs as part of the same command as typecheck.
Create a committed <packages-root>/example/ as a copy-me template:
index.ts — an entry point. Export one function that delegates to an internal file (so the package is visibly deep, not a pass-through).lib/impl.ts — an internal file in a subfolder, imported by index.ts, not reachable from outside.tests/example.test.ts — imports only ../index (an entry point), and asserts against the public function.Tell the user this is a starter template to copy or delete.
Done when: the example package exists, exposes its behaviour through a root entry point, and hides impl in a subfolder.
This is the completion criterion for the whole skill — a config that doesn't fail on a violation is worthless.
lint:boundaries. It must pass on the clean example.tests/example.test.ts (e.g. import { thing } from "../lib/impl"). Run lint:boundaries again — it must fail with tests-through-entrypoints.Done when: you have observed a pass, then a fail on the deep import, then a pass again. If step 2 does not fail, the rules are not wired correctly — fix before finishing.
Write a README.md in the packages folder (<packages-root>/README.md) — next to the packages it governs — covering: the src/packages/<name>/ layout (entry points at the root, lib/ for implementation, tests/ for tests), "import only through a package's entry points (its root files)", and how to run lint:boundaries. Discourage barrel files explicitly — expose several small entry points instead of re-exporting a whole subtree through one index. Keep it to the copy-me snippet plus the four rules in one paragraph each.
Then add a context pointer to it from the repo's agent-instructions file — CLAUDE.md if present, else AGENTS.md (create AGENTS.md if neither exists). One line is enough, e.g. Packages are deep modules — see [src/packages/README.md](./src/packages/README.md) before adding or importing one. This is what makes an agent discover the boundary rule instead of tripping over it.
Done when: <packages-root>/README.md exists and discourages barrels, and the repo's CLAUDE.md/AGENTS.md links to it.
$1 back-references (dependency-cruiser's group matching) are what let a package reach its own internals while outsiders can't — don't flatten them into separate per-package rules.lib/ (implementation) and tests/, but the rule doesn't hardcode them — any subfolder is private, so a new folder never needs a config change. Adding an entry point is just adding a root file — no barrel..cjs (not .js) so the config's module.exports works even in "type": "module" repos.| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-07 | pass→pass | 17,531 | 11,272 | -36% | 1 | 1 | 0% | 2,672 | 3,246 | +21% | 0 | 0 | — |
case-01 | fail→fail | 46,161 | 10,818 | -77% | 1 | 1 | 0% | 8,275 | 2,401 | -71% | 0 | 0 | — |
case-02 | fail→fail | 5,991 | 6,468 | +8% | 1 | 1 | 0% | 319 | 2,370 | +643% | 0 | 0 | — |
case-03 | fail→fail | 5,432 | 6,042 | +11% | 1 | 1 | 0% | 234 | 2,285 | +876% | 0 | 0 | — |
case-04 | pass→fail | 17,661 | 6,280 | -64% | 1 | 1 | 0% | 3,014 | 2,248 | -25% | 0 | 0 | — |
case-05 | pass→pass | 8,294 | 2,980 | -64% | 1 | 1 | 0% | 1,407 | 2,394 | +70% | 0 | 0 | — |
case-06 | fail→fail | 18,336 | 5,835 | -68% | 1 | 1 | 0% | 2,825 | 2,720 | -4% | 0 | 0 | — |
case-08 | fail→pass | 12,637 | 8,198 | -35% | 1 | 1 | 0% | 2,114 | 3,092 | +46% | 0 | 0 | — |
case-09 | pass→pass | 14,622 | 12,482 | -15% | 1 | 1 | 0% | 2,334 | 3,801 | +63% | 0 | 0 | — |
case-10 | fail→pass | 11,925 | 4,079 | -66% | 1 | 1 | 0% | 2,174 | 2,647 | +22% | 0 | 0 | — |
case-11 | fail→pass | 16,759 | 1,867 | -89% | 1 | 1 | 0% | 2,812 | 2,187 | -22% | 0 | 0 | — |
case-12 | fail→pass | 8,999 | 2,389 | -73% | 1 | 1 | 0% | 1,493 | 2,273 | +52% | 0 | 0 | — |
case-13 | fail→pass | 14,039 | 2,781 | -80% | 1 | 1 | 0% | 2,651 | 2,351 | -11% | 0 | 0 | — |
case-14 | fail→pass | 15,237 | 7,570 | -50% | 1 | 1 | 0% | 2,678 | 3,438 | +28% | 0 | 0 | — |
case-15 | fail→pass | 13,965 | 6,628 | -53% | 1 | 1 | 0% | 2,109 | 3,080 | +46% | 0 | 0 | — |
case-16 | fail→pass | 18,375 | 6,937 | -62% | 1 | 1 | 0% | 2,852 | 3,078 | +8% | 0 | 0 | — |
case-17 | fail→fail | 17,921 | 4,125 | -77% | 1 | 1 | 0% | 2,759 | 2,117 | -23% | 0 | 0 | — |
case-18 | fail→fail | 8,384 | 6,842 | -18% | 1 | 1 | 0% | 1,623 | 2,422 | +49% | 0 | 0 | — |
case-19 | fail→fail | 19,387 | 13,551 | -30% | 1 | 1 | 0% | 3,936 | 4,502 | +14% | 0 | 0 | — |
case-20 | pass→pass | 9,800 | 3,963 | -60% | 1 | 1 | 0% | 1,791 | 2,654 | +48% | 0 | 0 | — |
case-21 | fail→pass | 16,661 | 8,097 | -51% | 1 | 1 | 0% | 3,105 | 3,353 | +8% | 0 | 0 | — |
case-22 | fail→pass | 17,655 | 8,068 | -54% | 1 | 1 | 0% | 2,861 | 3,210 | +12% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted, and 17 counted toward the lift figure. The other 5 produced results that are not comparable between the two arms, so they are excluded from the headline rather than averaged into it. The headline lift of +41 percentage points is the difference between those two pass rates over the 17 comparable cases. 1 case got worse with the skill loaded, and it is included in that figure.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.