What problem does it solve? Blazor WASM frontends calling a separate ASP.NET Core backend hit recurring, hard-to-diagnose failures: startup crashes from manual DelegatingHandler chains, relative API paths silently resolving to the frontend origin, dev-server ETag caching of runtime config, stale session caches after admin writes, and browser tests that render pages without exercising the real interaction path. ## Core Features & Use Cases - Pitfall catalog with fixes: Eight verified pitfalls covering auth header injection, URL resolution, mode-config caching, @bind blur behavior, net6.0 test constraints, session-cache staleness, and display-precedence shadowing. - Verification discipline: A checklist enforcing that every cross-backend call goes through one URL resolver, regression tests assert the request host, and browser verification performs the actual critical-path operation. - Use Case: A user's login fails with valid credentials and the backend log shows no request. The Skill identifies that a relative api/ path resolved to the frontend origin, prescribes a central URL resolver, and adds a host-asserting regression test. ## Quick Start Ask the agent to diagnose why your Blazor WASM login or comment calls fail against the backend API and apply the integration pitfall fixes.