Firebase auth
Community Firebase agent skills for AI coding assistants — Expo / React Native focus
npx -y skills add DentVega/firebase-agent-skills --skill firebase-authAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Sets up Firebase Authentication with email/password, Google Sign-In, and Apple Sign-In. Use this skill whenever the user needs sign-in, sign-up, user sessions, password reset, OAuth providers, or auth-gated routes in a web, React Native, or Expo app.
SKILL.md
5.7 KB, as published. Nobody here has run it
Firebase Authentication
Minimum viable example
import auth from "@react-native-firebase/auth";
await auth().signInWithEmailAndPassword(email, password);
auth().onAuthStateChanged((user) => setUser(user)); // sole source of truth
That's the whole loop. Everything else — Google, Apple, password reset, custom claims — is a variation on this pattern.
1. Prerequisites
A Firebase project must exist before running anything in this skill. Verify with:
npx -y firebase-tools@latest projects:list
If none exists, create one:
npx -y firebase-tools@latest projects:create
Make sure the local working directory is initialized:
npx -y firebase-tools@latest init
2. Provisioning providers
Configure providers in firebase.json. Only anonymous, emailPassword, and googleSignIn can be enabled fully via CLI. Apple Sign-In requires manual steps in the Firebase Console.
{
"auth": {
"providers": {
"anonymous": true,
"emailPassword": true,
"googleSignIn": {
"oAuthBrandDisplayName": "My App",
"supportEmail": "[email protected]",
"authorizedRedirectUris": ["https://myapp.example.com"]
}
}
}
}
CRITICAL: deploy the config so the backend provisions OAuth clients:
npx -y firebase-tools@latest deploy --only auth
Apple Sign-In
Apple cannot be enabled by CLI. Walk the user through:
- Open
https://console.firebase.google.com/project/_/authentication/providers - Enable Apple provider
- For iOS: enable the Sign in with Apple capability in Xcode; no Service ID needed
- For Android/Web: create a Service ID in the Apple Developer portal, set the redirect URL Firebase shows, paste the Service ID and key into the Firebase console
For full Apple setup steps see references/apple-signin.md.
Scaffold a sign-in screen
If the user wants the canonical Expo sign-in screen with email + Google, invoke the scaffold instead of typing it out:
node node_modules/firebase-agent-skills/scripts/scaffold/auth-screen.mjs \
--out 'app/(auth)/sign-in.tsx'
Then replace YOUR_WEB_CLIENT_ID with the value from Google Cloud Console. The scaffold mirrors section 3's recommended pattern exactly.
3. Client SDK usage
The right module depends on the target platform:
- Web / Next.js / Vite →
firebasenpm package (see references/web-sdk.md) - Expo / React Native →
@react-native-firebase/authconfig plugin (see thefirebase-exposkill, then references/react-native.md)
Universal patterns to follow
- Never store the user object in your own state — subscribe to
onAuthStateChangedand derive state from it. This avoids stale UI after token refresh, sign-out, or account deletion. - Always await
auth.authStateReady()(web) or useonAuthStateChanged(RN) before deciding whether to redirect to a sign-in screen. Otherwise the user briefly sees the sign-in screen on every reload. - Never send the ID token to your own backend without verifying it server-side with the Firebase Admin SDK. The client can forge anything else.
4. Securing data with auth
When this skill is used together with firebase-firestore or firebase-cloud-functions, the canonical pattern is:
- Firestore rules:
allow read, write: if request.auth != null && request.auth.uid == resource.data.ownerId; - Callable Cloud Functions: read
request.auth.uid— ifundefined, throwHttpsError("unauthenticated", ...)
Defer to those skills for the full details.
5. Common mistakes
- Storing the user object in your own state instead of subscribing to
onAuthStateChanged. Leads to stale UI after token refresh, sign-out, or account deletion. Always derive from the auth listener. - Deciding redirects before
authStateReady()resolves. Causes a flash of the sign-in screen on every reload. Wait for the SDK to rehydrate before routing. - Sending the ID token to your backend without verifying it server-side. The client can forge any header except the ID token's signature. Verify with the Admin SDK on every request.
- Mixing the web SDK and
@react-native-firebase/authin one app. Two SDK init paths, two auth states, subtle desyncs. Pick one per app. - Forgetting to deploy auth config after editing
firebase.json. Provider changes don't apply untilnpx -y firebase-tools@latest deploy --only authruns. - Using the iOS OAuth client ID as Google
webClientIdon RN. Wrong — use the Web client ID auto-generated by the deploy step. Found in Google Cloud Console → Credentials.
6. Common follow-ups
- Password reset →
sendPasswordResetEmail(auth, email)(web) orauth().sendPasswordResetEmail(email)(RN) - Email verification →
sendEmailVerification(user)immediately after sign-up - Account linking (anonymous → permanent) →
linkWithCredential(user, credential) - Custom claims (roles, tiers) → set from the Admin SDK / a Cloud Function, then
await user.getIdToken(true)on the client to refresh
If the user asks about any of these, point them at the appropriate reference file or expand with details from the official docs at https://firebase.google.com/docs/auth.