What problem does it solve? Building authentication state management in a Next.js/React frontend against an ABP (ASP.NET Boilerplate) backend requires handling a non-standard login endpoint shape, token persistence, and consistent provider composition — this Skill provides the complete, working pattern. ## Core Features & Use Cases - Full Auth Provider Scaffold: Generates context, actions, reducer, and provider component files using redux-actions with typed state for login, register, and logout flows. - ABP Endpoint Integration: Handles the /api/TokenAuth/Authenticate endpoint with its specific field names (userNameOrEmailAddress, rememberClient) and auto-login after registration. - Provider Composition Guidance: Enforces AuthProvider as the outermost wrapper in the app's provider tree and verifies root layout integration. - Use Case: When scaffolding a new Next.js app backed by ABP, use this Skill to generate the entire auth state layer and wire it into the provider composition correctly. ## Quick Start Ask the AI to build the auth provider with login, register, and logout pages wired to the ABP TokenAuth endpoint.