auth0-react
Audited by Runlayer on Feb 24, 2026
Malicious tool definition detected
Tool: SKILL.md Description: --- name: auth0-react description: Use when adding authentication to React applications (login, logout, user sessions, protected routes) - integrates @auth0/auth0-react SDK for SPAs with Vite or Create React App --- # Auth0 React Integration Add authentication to React single-page applications using @auth0/auth0-react.
Malicious tool definition detected
Tool: references/api.md [1/2] Description: # Auth0 React SDK API Reference Complete API documentation for @auth0/auth0-react SDK.
Tool: references/api.md [2/2] Description: interface GetTokenWithPopupOptions { authorizationParams?: { audience?: string; scope?: string; }; config?: PopupConfigOptions; // Popup window configuration } ``` **Example:** ```tsx // Try silent auth, fall back to popup try { const token = await getAccessTokenSilently(); } catch (error) { // Fallback to popup if silent auth fails const token = await getAccessTokenWithPopup(); } // Direct popup usage with specific audience const token = await getAcces
Malicious tool definition detected
Tool: references/integration.md [1/2] Description: # Auth0 React Integration Patterns Practical implementation patterns and examples for common use cases.
Tool: references/integration.md [2/2]
Malicious tool definition detected
Tool: references/setup.md [1/2] Description: # Auth0 React Setup Guide Complete setup instructions with automated scripts and manual configuration options.
Tool: references/setup.md [2/2] Description: in" error:** ```bash # Force new login auth0 login --force ``` ### Environment Variable Issues **Variables not loading (Vite):** - Ensure variables start with `VITE_` - Restart dev server after creating `.env` - Check file is named exactly `.env` (not `.env.local`) **Variables not loading (CRA):** - Ensure variables start with `REACT_APP_` - Restart dev server after creating `.env` - CRA doesn't support `.env` hot reload --- ## Next Steps After setup