nx-run-tasks

Runs and coordinates Nx tasks across projects in a workspace.

Updated Dec 12, 2025
One-click install
npx skills add https://github.com/MateusRoscoe/quantyx --skill nx-run-tasks-mateusroscoe
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: nx-run-tasks
Source: https://github.com/MateusRoscoe/quantyx/tree/main/.cursor/skills/nx-run-tasks
Command: npx skills add https://github.com/MateusRoscoe/quantyx --skill nx-run-tasks-mateusroscoe

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Helps developers orchestrate Nx tasks across a monorepo, simplifying running builds, tests, linting, and serves across projects.

Core Features & Use Cases

  • Orchestrates single-task runs and multi-task workflows across multiple projects in an Nx workspace.
  • Supports run-many and affected-based strategies, with optional parallelism and project filtering.
  • Examines package.json/project.json targets to determine available tasks and provides guidance via --help when needed.

Quick Start

Describe the projects and targets you want to run and let the tool orchestrate the Nx workflow.

Frequently Asked Questions about nx-run-tasks

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run build and test tasks across multiple projects in an Nx monorepo?

To run build and test tasks across an Nx monorepo, you can orchestrate multi-task workflows using run-many. This executes specified targets across all configured projects and supports optional parallelism to streamline execution.

What is the best way to run only the tasks affected by my recent code changes in an Nx workspace?

Running affected tasks in an Nx workspace targets only projects impacted by recent changes. This affected-based execution strategy prevents unnecessary rebuilds or tests, streamlining your workflow by filtering to relevant projects.

Do I need Nx installed globally to run workspace tasks?

You do not need Nx installed globally to run workspace tasks. The orchestrator supports execution via npx or pnpm, relying on local workspace configurations in package.json or project.json to determine available targets.

How does the tool find available targets to run in my workspace?

The tool finds available targets by examining the package.json and project.json files in your workspace. It consults these defined targets to determine valid tasks and instructs users to check --help for additional guidance.

Can I apply project filters when running multiple tasks in an Nx monorepo?

You can apply project filters when running multiple tasks in an Nx monorepo. The orchestration supports project filtering alongside run-many and affected-based strategies, allowing you to target specific subsets of your workspace.