What problem does it solve? Manually creating new apps and libraries in an Nx monorepo leads to inconsistent structure, misconfigured targets, and boilerplate errors. This Skill runs the correct Nx generator with the right options so generated code matches existing repo conventions and passes verification. ## Core Features & Use Cases - Generator Discovery & Selection: Lists available plugin and local workspace generators, preferring local generators that encode repo-specific patterns. - Source-Aware Execution: Reads generator source code and uses --dry-run to confirm file placement before running with --no-interactive. - Convention Matching & Verification: Examines existing projects for naming and tooling patterns, then formats and validates output with build, lint, test, and typecheck targets. - Use Case: When asked to add a new React library to the monorepo, the Skill picks the right generator, decides between buildable and non-buildable output, runs it non-interactively, and verifies the result compiles and passes tests. ## Quick Start Ask the agent to scaffold a new library or app in the Nx workspace, for example: create a new React library called shared-ui under libs using the nx generator.