What problem does it solve?
This skill removes uncertainty and manual effort when creating or modifying projects in an Nx monorepo by discovering the correct generator, inspecting its behavior, and running it with safe, repository-aligned options to avoid misplaced files or inconsistent configuration.
Core Features & Use Cases
- Discover and inspect generators: Locate plugin and local workspace generators, read their schema and source code to understand exact file outputs and side effects.
- Safe generation workflow: Prefer local generators, always use --no-interactive, run dry-runs to verify placement, and adjust flags such as directory, name, and bundler to match repo conventions.
- Verify and integrate: Format and run appropriate verification targets (lint/test/build/typecheck) and modify generated artifacts to align with existing patterns; use case: scaffold a non-buildable React library that fits the monorepo's layout and CI checks.
Quick Start
Generate a non-buildable React library named ui-button in libs/ui/button using the workspace generator and verify the output with a dry run before applying.