Архитектурные стандарты TypeScript backend-модулей

★ 7.2 · engineering

backend-module-standards is a Claude Code skill that enforces TypeScript backend module architecture standards for all code under the `server/` directory. It applies when creating, modifying, refactoring, or reviewing routes, services, repositories, and tests, organizing each feature under `server/modules/<feature>/` with a mandatory `index.ts` barrel that exposes only the required public API — deep-importing another module's internal files is explicitly prohibited. Shared types, interfaces, and utilities are consolidated in `server/shared/types.ts`, `server/shared/interfaces.ts`, and `server/