turborepo
Installation
SKILL.md
Turborepo Skill
Build system guidance for JavaScript and TypeScript monorepos using Turborepo.
Core Rules
- Create package tasks, not root tasks.
- Register task behavior in
turbo.json. - Let root
package.jsondelegate withturbo run <task>. - Use
turbo <task>only for interactive one-off terminal commands, not in committed code. - Declare workspace dependencies in
package.jsonsodependsOn: ["^build"]can resolve actual package relationships.