What problem does it solve? Developers working in Nx monorepos often struggle to discover which targets exist across projects and how to run them efficiently, especially when filtering by project, tag, or affected code. ## Core Features & Use Cases - Target Discovery: Inspect available targets per project using nx show project <name> --json, including inferred targets from Nx plugins. - Single and Multi-Project Execution: Run one target with nx run <project>:<task> or many with nx run-many -t build test lint, with filtering via -p, --exclude, and --parallel. - Affected-Based Execution: Use nx affected -t build test lint to run tasks only on changed projects and their dependents, ideal for CI pipelines. - Use Case: In a large monorepo CI job, run nx affected -t test --base=main --head=HEAD to test only the projects impacted by a pull request instead of the entire workspace. ## Quick Start Ask the assistant to run the test target for a specific project in this Nx workspace, or to run builds only for projects affected by recent changes.