RxJS Patterns for Angular Skill This skill helps implement reactive patterns using RxJS in Angular applications. Core Principles Modern Angular + RxJS - Signals First : Use Signals for state, RxJS for async operations - Auto Cleanup : Use for subscription management - Interop : Use and for Signal/Observable conversion - AsyncPipe : Prefer AsyncPipe in templates when not using Signals Key Concepts - Observables for async data streams - Operators for data transformation - Subscription management and cleanup - Error handling and retry logic Signal + RxJS Integration toSignal() - Observable to Si…