skillfed

turborepo

Turborepo skills enable you to design and fine-tune efficient build pipelines across monorepo projects. Leverage task caching, dependency management, and parallel execution to accelerate your development workflow and reduce build times.

AI-generated summary based on this skill's SKILL.md

196 29 MIT updated by secondsky

Install

secondsky/claude-skills/turborepo · repository language: TypeScript

CLI (skillfed)coming soon
git clone https://github.com/secondsky/claude-skills
cp -r claude-skills/plugins/turborepo/skills/turborepo ~/.claude/skills/turborepo

SKILL.md

rendered from the published skill — quoted content, verbatim

Turborepo Skill

Build system for JavaScript/TypeScript monorepos. Turborepo caches task outputs and runs tasks in parallel based on dependency graph.

IMPORTANT: Package Tasks, Not Root Tasks

DO NOT create Root Tasks. ALWAYS create package tasks.

When creating tasks/scripts/pipelines, you MUST:

  1. Add the script to each relevant package's package.json
  2. Register the task in root turbo.json
  3. Root package.json only delegates via turbo run <task>

DO NOT put task logic in root package.json. This defeats Turborepo's parallelization.

```json // DO THIS: Scripts in each package //

(truncated - see the full file via the links below)

Read as markdown · JSON record · Browse the source repository

File tree — 15 files
plugins/turborepo/skills/turborepo/SKILL.md
plugins/turborepo/skills/turborepo/command/turborepo.md
plugins/turborepo/skills/turborepo/references/best-practices/RULE.md
plugins/turborepo/skills/turborepo/references/best-practices/dependencies.md
plugins/turborepo/skills/turborepo/references/best-practices/packages.md
plugins/turborepo/skills/turborepo/references/best-practices/structure.md
plugins/turborepo/skills/turborepo/references/boundaries/RULE.md
plugins/turborepo/skills/turborepo/references/caching/RULE.md
plugins/turborepo/skills/turborepo/references/caching/gotchas.md
plugins/turborepo/skills/turborepo/references/caching/remote-cache.md
plugins/turborepo/skills/turborepo/references/ci/RULE.md
plugins/turborepo/skills/turborepo/references/ci/github-actions.md
plugins/turborepo/skills/turborepo/references/ci/patterns.md
plugins/turborepo/skills/turborepo/references/ci/vercel.md
plugins/turborepo/skills/turborepo/references/cli/RULE.md

Related skills

Tags

build-orchestration dependency-graph cache-invalidation package-filtering ci-optimization workspace-structure task-scheduling incremental-builds monorepo-patterns output-hashing