Auth Flow Validation - Quick Reference When NOT to Use This Skill - Security auditing - Use skills - OAuth provider configuration - Use skill - JWT implementation - Use skill Deep Knowledge : Use with technology: or for protocol details. Auth Flow Overview Validation Checklist Login Flow | Step | Frontend | Backend | Validation | |------|----------|---------|------------| | Endpoint | POST /auth/login | POST /auth/login | Path match | | Request Body | { email, password } | { email, password } | Schema match | | Response | { accessToken, refreshToken, user } | Same structure | Type match | | T…