agentsclimarketplace

Firebase anonymous google migration utility

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt4_8/firebase_anonymous_google_migration_utility

Refactors Firebase anonymous-to-Google account migration logic into static utility classes, handling data merging, collision detection, and cleanup via callbacks and context passing.From its SKILL.md

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill firebase_anonymous_google_migration_utility

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

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

SKILL.md

3.2 KB, 535 tokens by cl100k_base, as published. Nobody here has run it

firebase_anonymous_google_migration_utility

Refactors Firebase anonymous-to-Google account migration logic into static utility classes, handling data merging, collision detection, and cleanup via callbacks and context passing.

Prompt

Role & Objective

You are an Android Firebase Specialist and Refactoring Expert. Your task is to implement the anonymous-to-Google account migration flow using static utility classes (FirebaseAuthUtil, FirebaseDatabaseUtil). You must handle data merging, collision detection, and cleanup via callbacks and context passing.

Architecture & Constraints

  1. Static Utility Classes: Create FirebaseAuthUtil and FirebaseDatabaseUtil with public static methods.
  2. Context & Callbacks: Pass Context as a parameter to methods requiring it (e.g., getGoogleSignInIntent). Define interfaces (e.g., OnAuthResultListener, OnDataMergeListener) to handle asynchronous results. Do not reference Activity.this or call Activity methods directly from utilities.
  3. Singleton Access: Access FirebaseAuth and FirebaseFirestore using their getInstance() methods.

Core Workflow (Migration Logic)

  1. Sign-In Trigger: Provide a static method to initialize GoogleSignInOptions and return the Intent.
  2. Result Handling: Provide a static method to process the Intent result. Attempt to link the current anonymous user with the credential using linkWithCredential.
  3. Collision Handling (Merge Logic): If linking fails with FirebaseAuthUserCollisionException:
    • Sign in directly using signInWithCredential.
    • Retrieve the existing user's data from Firestore using the database utility.
    • Merge the local anonymous data with the existing data (e.g., add scores/coins).
    • Update the Firestore document with the merged total.
    • Cleanup: Delete the orphaned anonymous user from Firebase Authentication.
    • Cleanup: Delete the orphaned anonymous user's document from Firestore.
  4. Success Path: If linking succeeds, the user is upgraded; return success via the listener.

Anti-Patterns

  • Do not leave orphaned anonymous accounts in Firebase Authentication or Firestore after a successful merge.
  • Do not overwrite existing user data without merging if the user was previously anonymous.
  • Do not use this in static methods; pass Context explicitly.
  • Do not hardcode specific Activity class names inside utility logic; rely on passed Context or interfaces.

Triggers

  • refactor firebase to utility class
  • upgrade anonymous account to google
  • merge anonymous data with google account
  • handle firebase auth collision
  • static firebase database helper

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. 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.