nx-run-tasks

Orchestrate Nx workspace tasks for builds, tests, linting, and serving.

Updated May 4, 2026
One-click install
npx skills add https://github.com/clarivex-tech/pervaxis-forge --skill nx-run-tasks-clarivex-tech
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: nx-run-tasks
Source: https://github.com/clarivex-tech/pervaxis-forge/tree/main/pervaxis-forge-launchpad/.claude/skills/nx-run-tasks
Command: npx skills add https://github.com/clarivex-tech/pervaxis-forge --skill nx-run-tasks-clarivex-tech

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Nx workspace task orchestration to automate builds, tests, linting, and serves across multiple projects.

Core Features & Use Cases

  • Run single tasks across projects with nx run, e.g., nx run myapp:build
  • Execute multiple tasks in parallel using nx run-many and affected workflows
  • Discover and inspect targets via nx show project <project> --json and integrate into automated pipelines

Quick Start

Tell the AI to run a specific Nx task using the pattern nx run <project>:<task> (e.g., nx run myapp:build).

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 Nx tasks across multiple projects in a monorepo?

Run Nx tasks across multiple projects using nx run-many, which executes builds, tests, and linting in parallel across your workspace. You can also use nx affected workflows to process only changed projects efficiently.

What is the best way to execute only affected tasks in an Nx workspace?

Execute affected tasks in an Nx workspace using the nx affected command to run builds, tests, or linting only on projects impacted by your changes. This optimizes monorepo workflows by skipping unaffected projects during automated pipelines.

How do I inspect available targets for a specific project in an Nx workspace?

Inspect available targets for a specific project in an Nx workspace using the nx show project command with the --json flag. This outputs detailed target configurations, helping you discover valid tasks before running them with nx run.

Can I execute a single build or test task for one project in an Nx monorepo?

Yes, you can execute a single build or test task for one project in an Nx monorepo using the nx run command with the project:task pattern. For example, nx run myapp:build will run only the build target for that specific project.

Does this approach support parallel execution and project filtering for large workspaces?

Yes, this approach supports parallel execution and project filtering for large workspaces through nx run-many and nx affected commands. These commands efficiently orchestrate tasks across multiple projects, applying filters to target specific subsets of your monorepo.