What problem does it solve? Developers working in Nx monorepos often struggle to discover available project targets and run tasks efficiently across many projects, especially when they need to limit execution to affected code. ## Core Features & Use Cases - Target Discovery: Inspect runnable targets with nx show project <name> --json, including tasks inferred by Nx plugins that are not visible in package.json or project.json. - Single and Multi-Project Execution: Run one task with nx run <project>:<task> or many with nx run-many -t build test lint, with filtering by project, pattern, or tag. - Affected-Based Runs: Use nx affected -t build test lint to execute tasks only on changed projects and their dependents, ideal for CI pipelines. - Use Case: After modifying a shared library in a large monorepo, run nx affected -t test to test only the impacted projects instead of the entire workspace. ## Quick Start Ask the assistant to run the test target for all affected projects in this Nx workspace.