This skill handles Turborepo configuration and monorepo management, triggering on turbo.json, task pipelines, caching, and the turbo CLI. It's opinionated about the right way to structure tasks: always define scripts in individual packages and register them in turbo.json, never put task logic in the root package.json. The documentation is thorough on decision trees for common scenarios like debugging cache misses, running only changed packages with the --affected flag, and setting up CI. One thing worth noting is it enforces using "turbo run" in scripts and CI rather than the shorthand, which makes sense for consistency even if it feels verbose. Good for teams serious about proper monorepo hygiene.
npx skills add https://github.com/secondsky/claude-skills --skill turborepo