What problem does it solve? Monorepo builds become slow and wasteful when every task re-runs on every change. This Skill provides production-ready Turborepo configuration patterns so builds, tests, and CI pipelines reuse cached outputs instead of repeating work. ## Core Features & Use Cases - Pipeline Configuration: Ready-to-use turbo.json templates covering build, test, lint, typecheck, dev, and deploy tasks with correct dependsOn, inputs, outputs, and env declarations. - Remote Caching: Setup for Vercel remote cache in GitHub Actions CI, plus a self-hosted Express cache server implementing the Turborepo artifacts API. - Filtering and Debugging: Commands for scoping builds to changed packages (--filter), dry runs, cache summaries, and verbose hash inspection to diagnose cache misses. - Use Case: A team migrating to a monorepo uses the root turbo.json template and CI workflow to build only packages changed since origin/main, cutting CI time by reusing remote cache artifacts. ## Quick Start Ask the AI to generate a turbo.json pipeline configuration with build, test, and lint tasks plus remote caching for your monorepo.