nx-workspace

Inspect Nx workspace projects, targets, and dependencies via nx commands.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Nx workspace exploration helps developers understand and navigate Nx monorepos, clarifying projects, targets, and configuration so you can debug and plan changes quickly.

Core Features & Use Cases

  • List projects in the workspace with filters and JSON output to feed automation.
  • Inspect project configuration, targets, and dependencies to troubleshoot build and test tasks.
  • Reason about dependencies and impact by examining the workspace graph and affected projects.

Quick Start

Run an nx showProjects command to list all projects in the workspace.

Frequently Asked Questions about nx-workspace

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

FAQPage Schema
How do I list all projects in an Nx workspace?

To list projects in an Nx workspace, run the `nx show projects` command. This outputs all available projects, supporting filters and JSON output to feed automation scripts or CI pipelines.

How can I inspect project configuration and targets in an Nx monorepo?

Inspect project configuration and targets in an Nx monorepo by running `nx show project`. This reveals specific build, test, and lint targets, helping you troubleshoot task configurations and identify misconfigurations.

How do I visualize dependencies and affected projects in an Nx workspace?

Visualize dependencies and affected projects in an Nx workspace by using the `nx graph` command. This examines the workspace graph to help you reason about dependency impacts and plan structural changes.

Why is my Nx workspace target missing or failing to run?

An Nx workspace target fails or is missing due to misconfigurations in `nx.json` or project configuration files. Diagnose the error by inspecting the target setup with `nx show project` to verify correct task definitions.

What is the best way to navigate and understand an existing Nx monorepo structure?

The best way to navigate an Nx monorepo structure is by combining `nx show projects` to list projects, `nx show project` to view configurations, and `nx graph` to map dependencies for comprehensive workspace exploration.