What problem does it solve? Blazor Web Apps using the BFF (Backend for Frontend) pattern often mishandle token storage, YARP proxy configuration, and InteractiveAuto rendering constraints, leading to leaked tokens, 401 loops, and broken tenant resolution. ## Core Features & Use Cases - YARP Proxy Configuration: Routes /api/* calls through the BFF with server-side Bearer token attachment and tenant/setup header forwarding. - Token Forwarding Rules: Enforces the handler chain (AccessTokenForwardingHandler, TenantHeaderForwardingHandler, SetupSecretForwardingHandler) so tokens never reach the browser. - Service Layer Patterns: Wraps NSwag API clients behind service interfaces with ApiException handling and safe default returns. - Use Case: When a Blazor WASM component gets repeated 401 errors calling the API, apply this Skill to configure the BFF cookie session, YARP transforms, and a 401 redirect handler instead of exposing tokens client-side. ## Quick Start Apply the blazor-bff-patterns skill to configure YARP proxying and token forwarding for my Blazor InteractiveAuto app.