What problem does it solve? Managing an Nx monorepo involves complex decisions about workspace structure, dependency boundaries, build caching, and CI efficiency, and misconfiguration leads to slow pipelines, circular dependencies, and unmaintainable code. ## Core Features & Use Cases - Workspace Organization: Establishes apps/libs directory structure with scope and type tagging conventions for Angular, React, and NestJS projects. - Module Boundary Enforcement: Configures the @nx/enforce-module-boundaries ESLint rule with depConstraints to prevent unauthorized cross-project imports. - Caching and CI Optimization: Sets up computation caching, affected commands, Nx Cloud remote caching, and GitHub Actions pipelines that only build and test changed projects. - Use Case: Your CI pipeline runs all tests on every PR even when only one library changed. This Skill generates a GitHub Actions workflow using nx affected with nrwl/nx-set-shas, parallel execution, and remote caching to cut build times dramatically. ## Quick Start Ask the assistant to set up an Nx workspace for an Angular frontend with a NestJS API, including module boundaries and an optimized CI pipeline.