nx-workspace

Inspect Nx workspace projects, configurations, and targets via CLI and JSON queries.

Updated Jun 6, 2026
One-click install
npx skills add https://github.com/karbiaO9/QA_Strategy_PFE --skill nx-workspace-karbiao9
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: nx-workspace
Source: https://github.com/karbiaO9/QA_Strategy_PFE/tree/main/Frontend%20to%20test/.github/skills/nx-workspace
Command: npx skills add https://github.com/karbiaO9/QA_Strategy_PFE --skill nx-workspace-karbiao9

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

Navigating complex Nx workspaces can be challenging, especially when dealing with workspace structure, project configuration, or when nx commands fail. This Skill simplifies the process by providing read-only exploration of Nx workspaces.

Core Features & Use Cases

  • Workspace Exploration: Understand Nx workspace structure, project configuration, available targets, and dependencies.
  • Project Configuration: Access full project configurations with nx show project <name> --json.
  • Target Information: List and inspect project targets with nx show project <name> --json | jq '.targets | keys'.

Quick Start

To list all projects in your Nx workspace, simply type 'nx show projects'.

Frequently Asked Questions about nx-workspace

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

FAQPage Schema
How do I explore Nx workspace structure and project configuration?

To explore an Nx workspace structure, use the nx CLI to list projects and inspect configurations. Running 'nx show projects' lists available projects, while 'nx show project <name> --json' outputs the full configuration for a specific project.

What is the best way to list available targets in an Nx project?

To list available targets in an Nx project, query the project configuration JSON. Pipe the output of 'nx show project <name> --json' into a JSON query tool like jq to extract target keys using '.targets | keys'.

How does read-only workspace exploration help debug Nx configuration issues?

Read-only workspace exploration debugs Nx configuration by allowing you to safely inspect project dependencies and target setups without modifying files. This reveals structural misalignments or missing configurations that cause nx commands to fail.

Can I use this to inspect Nx project dependencies without running build commands?

Yes, you can inspect Nx project dependencies without running build commands. This Skill provides read-only exploration of the workspace, allowing you to discover project relationships and validate configurations directly.

Why does navigating a complex Nx workspace fail when using standard commands?

Navigating a complex Nx workspace fails when project configurations are misaligned or dependencies are unclear. This Skill simplifies the process by using nx CLI and JSON query tools to facilitate project discovery and task validation.