What problem does it solve?
Provides a clear, repeatable blueprint to organize and operate JavaScript/TypeScript monorepos so teams avoid inconsistent builds, duplicated configs, and slow or non-cacheable pipelines.
Core Features & Use Cases
- Monorepo layout: Standard apps/ and packages/ structure with naming conventions for internal packages.
- Workspace dependency management: Guidance on pnpm workspaces and using workspace:* to reference internal packages reliably.
- Turborepo pipelines & caching: Configure dependsOn, inputs, and outputs to enable cacheable builds and correct cross-package ordering.
- Shared configs & tooling: Centralize TypeScript, ESLint, and Tailwind configs into packages/config-* for reuse.
- Targeted commands & deploys: Use pnpm --filter for per-app dev/build and Vercel-friendly per-app deploy strategies.
- Gotchas & best practices: Avoid relative imports across packages, align dependency versions, prevent circular dependencies, and always run tasks through Turbo.
Quick Start
Use the monorepo-and-tooling skill to set up a Turborepo + pnpm workspace with apps and packages, shared config packages, and a cacheable build pipeline.