nx-run-tasks

Automate Nx tasks across projects for build, test, lint, or serve commands.

Updated Feb 12, 2026
One-click install
npx skills add https://github.com/raopriyam/rpriyam-8dd1bfab-e986-4225-92b8-506ba7ad24bf --skill nx-run-tasks-raopriyam
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: nx-run-tasks
Source: https://github.com/raopriyam/rpriyam-8dd1bfab-e986-4225-92b8-506ba7ad24bf/tree/main/.opencode/skills/nx-run-tasks
Command: npx skills add https://github.com/raopriyam/rpriyam-8dd1bfab-e986-4225-92b8-506ba7ad24bf --skill nx-run-tasks-raopriyam

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Automates running Nx tasks across projects to execute build, test, lint, or serve commands.

Core Features & Use Cases

  • Run a single task: nx run <project>:<task>.
  • Run multiple tasks: nx run-many -t build test lint
  • Use case: Coordinate tasks across many apps in a monorepo to ensure consistency before deployment.

Quick Start

Ask it to run nx run-many -t build test lint across all projects.

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, test, and lint tasks across an Nx workspace?

You can run build, test, and lint tasks across an Nx workspace by using the nx run-many command with the -t flag to specify multiple target tasks for coordinated execution.

What is the best way to execute a single task in an Nx monorepo?

The best way to execute a single task in an Nx monorepo is using the nx run command followed by the project name and target task, such as nx run <project>:<task>.

Can I run Nx tasks in parallel and exclude specific projects?

Yes, you can run Nx tasks in parallel and exclude specific projects by appending flags like --parallel and --exclude to your run-many or affected commands.

How do I run only the tasks affected by my recent changes in Nx?

To run only the tasks affected by recent changes in Nx, use the nx affected command with your desired target to execute tasks across impacted projects rather than the entire workspace.

Do I need to know project targets to automate Nx task orchestration?

Yes, you need knowledge of project targets to automate Nx task orchestration, as the commands rely on target definitions to execute build, test, lint, or serve actions correctly.