What problem does it solve? Scaffolding new projects, libraries, or features in an Nx monorepo requires knowing which generator exists, what options it accepts, and how to match repo conventions. This Skill guides the AI through discovering, validating, running, and verifying Nx generators so generated code fits the workspace correctly. ## Core Features & Use Cases - Generator Discovery: Lists available plugin and local workspace generators, preferring local workspace generators over external plugins when both could satisfy a request. - Pre-Execution Validation: Fetches generator schemas with --help, reads generator source code, and studies existing repo patterns before running anything. - Safe Execution & Verification: Runs generators with --no-interactive, supports dry-run, formats output, and verifies results with lint, test, and build targets. - Use Case: When asked to "create a new React library for shared UI components", the Skill discovers @nx/react:library or a local equivalent, infers options from existing libraries, generates the code, and confirms it builds and passes tests. ## Quick Start Ask the AI to create a new library or scaffold a feature in your Nx workspace, for example: generate a new React library called shared-ui using the appropriate Nx generator.