agents/rules/quality-avoid-barrel-imports.md
Impact: MEDIUM (Improves tree-shaking and reduces bundle size)
Barrel files (index.ts that re-export from multiple modules) can hurt tree-shaking and increase bundle sizes. Import directly from source files instead.
Incorrect (importing from barrel files):
// Importing from index.ts barrel files
import { BookingService, UserService } from "./services";
// Importing from @calcom/ui barrel
import { Button } from "@calcom/ui";
Correct (importing directly from source):
// Import directly from source files
import { BookingService } from "./services/BookingService";
import { UserService } from "./services/UserService";
// Import directly from component path
import { Button } from "@calcom/ui/components/button";
Reference: Cal.com Engineering Standards