What problem does it solve? Understanding an Nx monorepo's structure, project configuration, and available targets requires digging through scattered config files, and nx commands often fail with unclear errors like "Cannot find configuration for task". This Skill provides read-only exploration commands that answer workspace questions and diagnose nx task failures directly. ## Core Features & Use Cases - Project Discovery: List and filter projects with nx show projects using globs, tags, target filters, and negation patterns. - Resolved Configuration: Retrieve full project configuration including plugin-inferred targets via nx show project <name> --json, avoiding the trap of reading partial project.json files. - Dependency Graph Queries: Find what depends on a library or inspect project relationships using nx graph --print with jq. - Troubleshooting: Diagnose "Cannot find configuration for task" errors and stale workspace state with targeted commands. - Use Case: An agent needs to run tests for a library but the command fails. Use this Skill to check which targets actually exist on the project, then run the correct one. ## Quick Start Ask the AI to list all projects in this Nx workspace and show the build target configuration for a specific project.