What problem does it solve? Developers working in Nx monorepos often struggle to answer basic questions about project structure, available targets, and dependency relationships without digging through scattered configuration files. This Skill provides read-only exploration of Nx workspaces using structured CLI commands. ## Core Features & Use Cases - Project Discovery: List and filter projects by name, glob pattern, tag, type, or target using nx show projects. - Configuration Inspection: Retrieve fully resolved project configuration (including plugin-inferred targets) via nx show project --json instead of reading partial project.json files. - Dependency Analysis: Query the project graph with nx graph --print and jq to find what depends on a given library. - Troubleshooting: Diagnose errors like "Cannot find configuration for task" and stale workspace cache issues. - Use Case: When an nx build command fails, use this Skill to check which targets actually exist on the project and how they are configured before retrying. ## Quick Start Ask the AI to list all projects in this Nx workspace and show the build target configuration for a specific project.