What problem does it solve?
This Skill helps developers and CI operators run, coordinate, and understand Nx targets across large monorepo workspaces so tasks like build, test, lint, and serve can be executed correctly and efficiently.
Core Features & Use Cases
- Discover Targets: Show available project targets and inferred tasks using nx show project <project> --json so you know what can be executed.
- Run Single & Multiple Tasks: Guidance for nx run <project>:<task>, nx run-many for running tasks across selected projects, and tips for filtering, excluding, and parallelizing runs.
- Affected Runs & CI Workflows: Use nx affected to run tasks only for changed projects and their dependents, with options to set base/head or specify files for CI optimization.
- Useful Flags: Explains flags like --skipNxCache, --verbose, --nxBail, --configuration, and how to control parallelism and project selection.
Quick Start
Run the build target for project myapp using Bun-prefixed Nx commands by executing bun x nx run myapp:build.