What problem does it solve? Slow builds and unpredictable cache misses in a Turborepo 2.x monorepo waste CI time and developer hours. This Skill governs the configuration of turbo.json pipelines, cache inputs/outputs, and remote caching so builds reuse prior results correctly. ## Core Features & Use Cases - Pipeline Configuration: Defines correct Turborepo 2.x tasks syntax (not the deprecated v1 pipeline key) with proper dependsOn, inputs, outputs, and env declarations. - Cache Miss Debugging: Diagnoses the three most common causes of cache misses—overly broad inputs, undeclared environment variables, and missing outputs—and provides fixes. - On-Prem Remote Caching: Sets up self-hosted remote caching via turbo-remote-cache or a shared Docker volume, without relying on Vercel. - Use Case: Your CI builds take 20 minutes because every run is a cache miss. Use this Skill to audit turbo.json, scope the inputs globs, declare the env variables, and enable a self-hosted remote cache so unchanged packages skip rebuilding. ## Quick Start Ask the AI to review the repo's turbo.json for Turborepo 2.x cache misconfigurations and explain why the build task keeps missing the cache in CI.