What problem does it solve? Setting up navigation in modern Angular applications requires coordinating route definitions, lazy loading, authentication guards, resolvers, and route parameter handling, which is error-prone when done from scratch. This Skill provides ready-to-use patterns for the complete Angular v20+ routing workflow. ## Core Features & Use Cases - Route Configuration: Set up basic routes, nested child routes, redirects, and wildcard 404 handling with provideRouter. - Lazy Loading: Load feature routes and standalone components on demand with loadChildren and loadComponent, plus preloading strategies. - Functional Guards & Resolvers: Protect routes with auth and role guards, prevent navigation away from unsaved forms, and pre-fetch data with ResolveFn. - Signal-Based Route Params: Bind route and query parameters directly to component inputs using withComponentInputBinding. - Use Case: You are building an admin dashboard that requires authentication, lazy-loaded feature areas, and user detail pages driven by URL parameters. Use this Skill to wire up the full routing structure with guards and resolvers in minutes. ## Quick Start Ask the AI to set up Angular routing for your app with a lazy-loaded admin section protected by an authentication guard.