nx-workspace

Inspect Nx workspace structure, projects, targets, and dependencies.

3|2|Updated Oct 9, 2025
One-click install
npx skills add https://github.com/ngx-signal-forms/ngx-signal-forms --skill nx-workspace-ngx-signal-forms
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: nx-workspace
Source: https://github.com/ngx-signal-forms/ngx-signal-forms/tree/main/.github/skills/nx-workspace
Command: npx skills add https://github.com/ngx-signal-forms/ngx-signal-forms --skill nx-workspace-ngx-signal-forms

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Read-only exploration of Nx workspaces to understand workspace structure, project configurations, available targets, and dependencies.

Core Features & Use Cases

  • Understand workspace structure, projects, and targets using commands like nx show projects and nx show project <name> --json.
  • Diagnose workspace configuration and dependencies to plan changes or debug issues.
  • Answer common questions about project layout, targets, and dependencies via structured outputs.

Quick Start

Run nx show projects 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 all projects in an Nx workspace, run the command `nx show projects`. This provides a complete inventory of all available projects within your monorepo structure quickly.

How do I inspect target configurations for a specific Nx project?

You can inspect target configurations for a specific Nx project by running `nx show project <name> --json`. This returns structured JSON output detailing the project's targets and dependencies.

What is the best way to diagnose Nx command failures?

Diagnosing Nx command failures involves inspecting workspace structure and project configurations. Analyzing the dependency graph and target setups helps identify misconfigurations causing execution errors.

How does an Nx workspace dependency graph work?

An Nx workspace dependency graph maps project relationships by inspecting configured targets and dependencies. This read-only exploration reveals how projects interact and rely on each other within the monorepo.

Can I use read-only inspection to plan changes to my Nx workspace?

Yes, you can use read-only inspection to plan changes to your Nx workspace. Analyzing current project layouts and configurations helps you safely strategize modifications without altering the workspace.

Why do I need structured JSON output for Nx project configurations?

Structured JSON output from Nx project configurations provides a standardized format for understanding targets and dependencies. This allows for programmatic parsing and clear visibility into workspace setups.