Turborepo
Overview
Build system for JavaScript/TypeScript monorepos. Caches task outputs and runs tasks in parallel based on dependency graph. Always create package tasks (not root tasks), use turbo run in scripts, and let dependsOn manage execution order. Configuration uses turbo.json (or turbo.jsonc for comments).
When to use: Monorepo task orchestration, build caching, CI optimization, workspace dependency management, package boundary enforcement.
When NOT to use: Single-package projects, non-JavaScript monorepos, projects without build steps.
Quick Reference
| Pattern |
Syntax |
Key Points |
| Schema |
"$schema": "https://turborepo.dev/schema.json" |
Always include in turbo.json |
| Dependency build |
"dependsOn": ["^build"] |
Build dependencies first |
| Same-package task |
"dependsOn": ["codegen"] |
Run in same package first |
| Specific package |
"dependsOn": ["pkg#task"] |
Named package's task |
| Parallel lint/typecheck |
Transit Nodes pattern |
Cache invalidation without sequential execution |
| Dev server |
"persistent": true, "cache": false |
Long-running, non-cacheable |
| Sidecar tasks |
"with": ["api#dev"] |
Run tasks concurrently alongside |
| Watch mode |
turbo watch dev |
Re-run on file changes |
| Filter by package |
--filter=web |
Single package |
| Filter with deps |
--filter=web... |
Package + dependencies |
| Changed packages |
--affected |
Changed + dependents |
| Debug cache |
--summarize or --dry |
See hash inputs |
| Package config |
turbo.json with "extends": ["//"] |
Per-package overrides |
| Composable config |
"extends": ["@repo/config"] |
Extend from any workspace package |
| Extend arrays |
"$TURBO_EXTENDS$" in arrays |
Append to inherited config instead of replacing |
| Env vars in hash |
"env": ["API_URL"] |
Cache invalidation on change |
| Boundaries |
turbo boundaries |
Enforce package isolation and import rules |
| Query graph |
turbo query |
GraphQL interface to package/task graphs |
| Code generation |
turbo generate |
Scaffold new packages and components |
| List packages |
turbo ls |
List all packages in monorepo |
| Devtools |
turbo devtools |
Visual Package Graph and Task Graph explorer |
| Docker pruned workspace |
turbo prune <pkg> --docker |
Minimal monorepo slice for container builds |
Decision Trees
Configure a Task
Configure a task?
+-- Define task dependencies -> dependsOn in turbo.json
+-- Lint/check-types (parallel) -> Transit Nodes pattern
+-- Specify build outputs -> outputs key
+-- Handle environment variables -> env key or globalEnv
+-- Dev/watch tasks -> persistent: true, cache: false
+-- Sidecar tasks (run alongside) -> with key
+-- Package-specific config -> Package turbo.json with extends: ["//"]
+-- Composable config -> extends from any workspace package
+-- Global settings -> globalEnv, globalDependencies, cacheDir
Cache Problems
Cache problems?
+-- Outputs not restored -> Missing outputs key
+-- Unexpected cache misses -> Use --summarize or --dry to debug
+-- Skip cache entirely -> --force or cache: false
+-- Remote cache not working -> Check turbo login/link
+-- Environment causing misses -> Var not in env key
Filter Packages
Filter packages?
+-- By package name -> --filter=web
+-- By directory -> --filter=./apps/*
+-- Package + dependencies -> --filter=web...
+-- Package + dependents -> --filter=...web
+-- Changed + dependents -> --affected
Explore Repository
Explore repository?
+-- List all packages -> turbo ls
+-- Query dependency graph -> turbo query
+-- Visualize graphs -> turbo devtools
+-- Check boundary violations -> turbo boundaries
+-- Generate new package -> turbo generate workspace
+-- Run custom generator -> turbo generate run [name]
Common Mistakes
| Mistake |
Correct Pattern |
Putting build logic in root package.json scripts instead of per-package |
Define scripts in each package and use turbo run in root to delegate |
Using ^build without declaring workspace:* dependency |
Add the dependency in package.json first; ^build only triggers for declared dependencies |
Chaining turbo tasks with && in package scripts |
Use dependsOn in turbo.json to declare task ordering |
Not adding environment variables to the env key in turbo.json |
Declare all build-affecting env vars in env so cache hashes correctly |
Using --parallel flag to bypass dependency ordering |
Configure dependsOn correctly or use transit nodes for parallel tasks with proper cache invalidation |
| Using outdated schema URL |
Use https://turborepo.dev/schema.json in $schema field |
| Overriding inherited arrays in package configs |
Use $TURBO_EXTENDS$ in arrays to append instead of replace |
Defining tasks in root turbo.json that belong to a specific package |
Define tasks inside the package's own turbo.json with extends: ["//"] |
Using turbo <task> shorthand in scripts or CI |
Use turbo run <task> in package.json scripts and CI pipelines; shorthand is for interactive use only |
Delegation
- Monorepo structure exploration: Use
Explore agent to discover packages, workspace layout, and dependency relationships
- Pipeline configuration and optimization: Use
Task agent to set up turbo.json tasks, configure caching, and debug cache misses
- Monorepo architecture planning: Use
Plan agent to design package boundaries, shared libraries, and CI optimization strategy
If the pnpm-workspace skill is available, delegate workspace setup, dependency linking, catalogs, and pnpm deploy to it.
If the changesets skill is available, delegate versioning, changelog generation, and npm publishing to it.
References
- Task configuration and dependsOn patterns
- Caching, outputs, and debugging cache issues
- Filtering, affected packages, and CI patterns
- Workspace structure and package management
- Environment variables and modes
- Watch mode, dev tasks, and anti-patterns
- Boundaries, query, and code generation
1---2name: turborepo3description: Turborepo monorepo build system and orchestration. Covers task pipelines, dependsOn syntax, caching configuration, remote cache, filtering, CI optimization, environment variables, workspace management, watch mode, package boundaries, and code generation. Use when configuring tasks, creating packages, setting up monorepo, sharing code between apps, running changed packages, debugging cache, optimizing CI, resolving workspace dependencies, enforcing package boundaries, or generating code.4license: MIT5---6
7# Turborepo
8
9## Overview
10
11Build system for JavaScript/TypeScript monorepos. Caches task outputs and runs tasks in parallel based on dependency graph. Always create package tasks (not root tasks), use `turbo run` in scripts, and let `dependsOn` manage execution order. Configuration uses `turbo.json` (or `turbo.jsonc` for comments).
12
13**When to use:** Monorepo task orchestration, build caching, CI optimization, workspace dependency management, package boundary enforcement.
14
15**When NOT to use:** Single-package projects, non-JavaScript monorepos, projects without build steps.
16
17## Quick Reference
18
19| Pattern | Syntax | Key Points |
20| ----------------------- | ------------------------------------------------ | ----------------------------------------------- |
21| Schema | `"$schema": "https://turborepo.dev/schema.json"` | Always include in turbo.json |
22| Dependency build | `"dependsOn": ["^build"]` | Build dependencies first |
23| Same-package task | `"dependsOn": ["codegen"]` | Run in same package first |
24| Specific package | `"dependsOn": ["pkg#task"]` | Named package's task |
25| Parallel lint/typecheck | Transit Nodes pattern | Cache invalidation without sequential execution |
26| Dev server | `"persistent": true, "cache": false` | Long-running, non-cacheable |
27| Sidecar tasks | `"with": ["api#dev"]` | Run tasks concurrently alongside |
28| Watch mode | `turbo watch dev` | Re-run on file changes |
29| Filter by package | `--filter=web` | Single package |
30| Filter with deps | `--filter=web...` | Package + dependencies |
31| Changed packages | `--affected` | Changed + dependents |
32| Debug cache | `--summarize` or `--dry` | See hash inputs |
33| Package config | `turbo.json` with `"extends": ["//"]` | Per-package overrides |
34| Composable config | `"extends": ["@repo/config"]` | Extend from any workspace package |
35| Extend arrays | `"$TURBO_EXTENDS$"` in arrays | Append to inherited config instead of replacing |
36| Env vars in hash | `"env": ["API_URL"]` | Cache invalidation on change |
37| Boundaries | `turbo boundaries` | Enforce package isolation and import rules |
38| Query graph | `turbo query` | GraphQL interface to package/task graphs |
39| Code generation | `turbo generate` | Scaffold new packages and components |
40| List packages | `turbo ls` | List all packages in monorepo |
41| Devtools | `turbo devtools` | Visual Package Graph and Task Graph explorer |
42| Docker pruned workspace | `turbo prune <pkg> --docker` | Minimal monorepo slice for container builds |
43
44## Decision Trees
45
46### Configure a Task
47
48```text
49Configure a task?
50+-- Define task dependencies -> dependsOn in turbo.json
51+-- Lint/check-types (parallel) -> Transit Nodes pattern
52+-- Specify build outputs -> outputs key
53+-- Handle environment variables -> env key or globalEnv
54+-- Dev/watch tasks -> persistent: true, cache: false
55+-- Sidecar tasks (run alongside) -> with key
56+-- Package-specific config -> Package turbo.json with extends: ["//"]
57+-- Composable config -> extends from any workspace package
58+-- Global settings -> globalEnv, globalDependencies, cacheDir
59```
60
61### Cache Problems
62
63```text
64Cache problems?
65+-- Outputs not restored -> Missing outputs key
66+-- Unexpected cache misses -> Use --summarize or --dry to debug
67+-- Skip cache entirely -> --force or cache: false
68+-- Remote cache not working -> Check turbo login/link
69+-- Environment causing misses -> Var not in env key
70```
71
72### Filter Packages
73
74```text
75Filter packages?
76+-- By package name -> --filter=web
77+-- By directory -> --filter=./apps/*
78+-- Package + dependencies -> --filter=web...
79+-- Package + dependents -> --filter=...web
80+-- Changed + dependents -> --affected
81```
82
83### Explore Repository
84
85```text
86Explore repository?
87+-- List all packages -> turbo ls
88+-- Query dependency graph -> turbo query
89+-- Visualize graphs -> turbo devtools
90+-- Check boundary violations -> turbo boundaries
91+-- Generate new package -> turbo generate workspace
92+-- Run custom generator -> turbo generate run [name]
93```
94
95## Common Mistakes
96
97| Mistake | Correct Pattern |
98| ------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- |
99| Putting build logic in root `package.json` scripts instead of per-package | Define scripts in each package and use `turbo run` in root to delegate |
100| Using `^build` without declaring `workspace:*` dependency | Add the dependency in `package.json` first; `^build` only triggers for declared dependencies |
101| Chaining turbo tasks with `&&` in package scripts | Use `dependsOn` in `turbo.json` to declare task ordering |
102| Not adding environment variables to the `env` key in turbo.json | Declare all build-affecting env vars in `env` so cache hashes correctly |
103| Using `--parallel` flag to bypass dependency ordering | Configure `dependsOn` correctly or use transit nodes for parallel tasks with proper cache invalidation |
104| Using outdated schema URL | Use `https://turborepo.dev/schema.json` in `$schema` field |
105| Overriding inherited arrays in package configs | Use `$TURBO_EXTENDS$` in arrays to append instead of replace |
106| Defining tasks in root `turbo.json` that belong to a specific package | Define tasks inside the package's own `turbo.json` with `extends: ["//"]` |
107| Using `turbo <task>` shorthand in scripts or CI | Use `turbo run <task>` in `package.json` scripts and CI pipelines; shorthand is for interactive use only |
108
109## Delegation
110
111- **Monorepo structure exploration**: Use `Explore` agent to discover packages, workspace layout, and dependency relationships
112- **Pipeline configuration and optimization**: Use `Task` agent to set up turbo.json tasks, configure caching, and debug cache misses
113- **Monorepo architecture planning**: Use `Plan` agent to design package boundaries, shared libraries, and CI optimization strategy
114
115> If the `pnpm-workspace` skill is available, delegate workspace setup, dependency linking, catalogs, and `pnpm deploy` to it.
116> If the `changesets` skill is available, delegate versioning, changelog generation, and npm publishing to it.
117
118## References
119
120- [Task configuration and dependsOn patterns](references/task-configuration.md)
121- [Caching, outputs, and debugging cache issues](references/caching.md)
122- [Filtering, affected packages, and CI patterns](references/filtering-and-ci.md)
123- [Workspace structure and package management](references/workspace-structure.md)
124- [Environment variables and modes](references/environment-variables.md)
125- [Watch mode, dev tasks, and anti-patterns](references/dev-and-anti-patterns.md)
126- [Boundaries, query, and code generation](references/boundaries-and-tooling.md)