What problem does it solve? Scaffolding new projects in an Nx monorepo involves many decisions—choosing the right generator, configuring options correctly, matching existing repo conventions, and verifying the output. This Skill guides the AI through the entire generator workflow so generated code lands in the right place, follows workspace patterns, and passes verification. ## Core Features & Use Cases - Generator Discovery & Selection: Lists available plugin and local workspace generators, preferring local generators customized for the repo. - Source-Level Inspection: Reads generator source code (not just schemas) to understand file outputs, side effects, and option interactions before running. - Safe Execution Workflow: Uses --dry-run and --no-interactive flags to verify file placement before committing changes. - Verification & Formatting: Runs format, build, lint, test, and typecheck targets after generation to confirm the workspace stays healthy. - Use Case: Ask the AI to create a new React library in your Nx monorepo; it discovers the right generator, checks buildable vs non-buildable conventions, dry-runs the command, generates the code, and verifies it with the workspace's targets. ## Quick Start Use the nx-generate skill to scaffold a new non-buildable React library called shared-ui in my Nx workspace and verify it builds and lints.