agentsclimarketplace

Firebase auth

Skill DentVega/firebase-agent-skills/skills/firebase-auth

Community Firebase agent skills for AI coding assistants — Expo / React Native focus

Install
npx -y skills add DentVega/firebase-agent-skills --skill firebase-auth

Assembled 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:

  1. Open https://console.firebase.google.com/project/_/authentication/providers
  2. Enable Apple provider
  3. For iOS: enable the Sign in with Apple capability in Xcode; no Service ID needed
  4. 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:

Universal patterns to follow

  • Never store the user object in your own state — subscribe to onAuthStateChanged and derive state from it. This avoids stale UI after token refresh, sign-out, or account deletion.
  • Always await auth.authStateReady() (web) or use onAuthStateChanged (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 — if undefined, throw HttpsError("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/auth in 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 until npx -y firebase-tools@latest deploy --only auth runs.
  • Using the iOS OAuth client ID as Google webClientId on RN. Wrong — use the Web client ID auto-generated by the deploy step. Found in Google Cloud Console → Credentials.

6. Common follow-ups

  • Password resetsendPasswordResetEmail(auth, email) (web) or auth().sendPasswordResetEmail(email) (RN)
  • Email verificationsendEmailVerification(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.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.