What problem does it solve?
This Skill clarifies and guides Nx task orchestration to run, order, and cache targets across a monorepo so developers avoid race conditions, unexpected cache skips, and fragile dev-server startup ordering.
Core Features & Use Cases
- Task Ordering with dependsOn: Show how to declare inter-target dependencies so builds and dev servers start in the correct sequence.
- Cache-aware Builds: Explain cacheableOperations and how Nx skips cached tasks, when to accept cache hits, and how to reset the cache when needed.
- readyWhen for Readiness: Demonstrate using readyWhen for long-running dev processes so dependents only start after stdout indicates readiness.
- Use Case: Start ui-components dev, wait for federated types, then start shell dev to ensure the host consumes fresh remote assets without race conditions.
Quick Start
Use the nx skill to run the repository's full dev orchestration by executing bun run dev from the repo root.