turborepo

Originally fromvercel/turborepo
Installation
SKILL.md

Turborepo Skill

Build system guidance for JavaScript and TypeScript monorepos using Turborepo.

Core Rules

  1. Create package tasks, not root tasks.
  2. Register task behavior in turbo.json.
  3. Let root package.json delegate with turbo run <task>.
  4. Use turbo <task> only for interactive one-off terminal commands, not in committed code.
  5. Declare workspace dependencies in package.json so dependsOn: ["^build"] can resolve actual package relationships.

Baseline Pattern

// apps/web/package.json
{
  "scripts": {
    "build": "next build",
Related skills
Installs
13
GitHub Stars
22
First Seen
Apr 22, 2026