nx-workspace

Explore Nx workspace projects, configurations, targets, and dependencies read-only.

Updated Feb 1, 2026
One-click install
npx skills add https://github.com/ramiz4/simple-pos --skill nx-workspace-ramiz4
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: nx-workspace
Source: https://github.com/ramiz4/simple-pos/tree/main/.gemini/skills/nx-workspace
Command: npx skills add https://github.com/ramiz4/simple-pos --skill nx-workspace-ramiz4

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Nx workspace exploration helps teams understand and navigate Nx workspaces, enabling quick answers about projects, configurations, and task structure.

Core Features & Use Cases

  • Read-only exploration of Nx workspaces to understand structure, project configuration, targets, and dependencies.
  • Quickly answer questions like "What projects are in this workspace?", "How is project X configured?", "What targets are available?", and "What depends on library Y?".
  • Helpful when debugging Nx tasks or when a command fails, providing guidance on available targets and configuration.

Quick Start

Ask me to inspect the workspace, e.g., "What projects are in this 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, use the `nx show projects` command. This read-only exploration retrieves a full inventory of available projects within your current workspace configuration.

How can I inspect the configuration and available targets for a specific Nx project?

Inspect an Nx project configuration by running `nx show project`. This retrieves full project metadata, including available targets and dependencies, supporting JSON outputs for programmatic use.

What is the best way to trace dependencies between libraries in an Nx workspace?

Tracing Nx workspace dependencies is best achieved using `nx graph`. This visualizes project connections, allowing you to quickly identify what depends on a specific library and understand structural relationships.

Can I get JSON output from Nx workspace commands for programmatic use?

Yes, Nx workspace exploration supports JSON outputs for programmatic use. Commands like `nx show project` can return full project metadata and configuration in JSON format to integrate with other tools.

Why did my Nx task fail and how do I check available targets?

When an Nx task fails, check available targets using `nx show project` to inspect the project configuration. This read-only retrieval helps debug task structure and verify target availability safely.