What problem does it solve? Setting up consistent linting, formatting, and TypeScript script execution across a monorepo requires juggling multiple tools and configs. This Skill provides a ready-made Biome configuration that replaces ESLint and Prettier, plus tsx patterns for running TypeScript scripts without compilation. ## Core Features & Use Cases - Biome Configuration: Provides a complete biome.json with linter rules (noExplicitAny, cognitive complexity limits), formatter settings, and file ignore patterns for a pnpm workspace. - Command Reference: Covers check, fix, format, lint, and CI-mode commands, plus package.json scripts and turbo.json pipeline integration. - tsx Script Runner: Shows how to run seed scripts, data migrations, and dev utilities directly in TypeScript, including a Prisma seed script pattern. - Use Case: You are bootstrapping a Turborepo project and need unified lint/format tooling plus a way to run database seed scripts without a build step. ## Quick Start Set up Biome linting and formatting in my pnpm monorepo and add a tsx-based Prisma seed script.