What problem does it solve? Managing a monorepo with multiple apps and shared packages requires consistent workspace configuration, scoped dependency installs, and correctly ordered build pipelines. This Skill provides the exact Turborepo and pnpm patterns for the DropFlow monorepo so you avoid misconfigured pipelines, broken workspace links, and incorrect caching. ## Core Features & Use Cases - Workspace Dependency Management: Add dependencies to specific packages using pnpm --filter and link shared packages with --workspace flags. - Turborepo Pipeline Configuration: Define build, dev, test, and lint tasks with correct dependsOn ordering, caching rules, and persistent dev server settings. - Package Scaffolding: Create new shared packages under the @dropflow scope with the correct package.json and tsconfig.json structure. - Use Case: When adding a new shared utility package that both the Next.js web app and BullMQ worker depend on, use this Skill to scaffold the package, wire it into the workspace, and configure the build pipeline so dependencies compile in the right order. ## Quick Start Use the turborepo-pnpm skill to scaffold a new shared package called @dropflow/utils and add it as a workspace dependency to the web app.