What problem does it solve? Angular developers often struggle to remember the correct CLI commands, flags, and configuration options for scaffolding, building, testing, and optimizing Angular v20+ projects, leading to inconsistent setups and misconfigured builds. ## Core Features & Use Cases - Project Scaffolding: Create new projects and generate components, services, directives, pipes, guards, and interceptors with the correct v20+ defaults. - Build & Test Workflows: Run development servers, production builds with budgets, unit tests with coverage, and linting with proper flags. - Configuration Guidance: Set up angular.json, environment file replacements, path aliases, proxies, caching, and CI/CD pipelines. - Use Case: When starting a new feature, ask for a standalone component with OnPush change detection and skipped tests, and receive the exact ng generate command plus configuration guidance. ## Quick Start Generate a new Angular component named user-profile inside the features folder with OnPush change detection and show me the command.