What problem does it solve? Developers working with Angular v20+ often struggle to remember the correct CLI commands, flags, and configuration options for scaffolding, building, testing, and optimizing applications, leading to inconsistent setups and misconfigured builds. ## Core Features & Use Cases - Code Generation: Generate components, services, directives, pipes, guards, interceptors, and other schematics with the correct flags for standalone Angular projects. - Build & Test Workflows: Run development servers, production builds with budgets and output hashing, unit tests with coverage, and linting through standard Angular CLI commands. - Configuration Guidance: Set up angular.json, environment file replacements, path aliases, proxy configs, build caching, and bundle analysis. - Use Case: When starting a new feature, ask for a component with OnPush change detection and skipped tests, then build for production with bundle budgets enforced and analyze the output with esbuild-visualizer. ## Quick Start Ask the assistant to generate a new Angular component with OnPush change detection and then run a production build with bundle analysis.