Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计未展示

moai-platform-firebase-authmoai platform Firebase auth 安全

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

630

周安装

26

GitHub Stars

公开资料未说明

下载量

206
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:moai-platform-firebase-auth(moai platform Firebase auth 安全)
来源仓库:https://github.com/modu-ai/moai-rank
仓库路径:skills/moai-platform-firebase-auth
安装命令:
npx skills add modu-ai/moai-rank --skill "moai-platform-firebase-auth"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add modu-ai/moai-rank --skill "moai-platform-firebase-auth"

简介

moai-platform-firebase-auth 用于 Firebase 认证流程的安全审计与漏洞排查。

  • 适合梳理敏感配置、检查凭据风险或分析鉴权逻辑等安全任务。
  • 不能将工具输出直接视为最终结论,需人工复核关键操作结果。
  • 涉及密钥、令牌或用户数据时,必须确认最小权限和脱敏处理方式。
  • 归类为研究检索类技能,专为 Codex、Claude、Cursor、Gemini CLI 中的 Firebase 安全分析设计。

SKILL.md

Firebase Authentication Specialist

Comprehensive Firebase Authentication implementation covering Google ecosystem integration, social authentication providers, phone authentication, anonymous auth, custom claims, and Security Rules integration.


Quick Reference

Firebase Auth Core Features:

  • Google Sign-In provides native Google ecosystem integration with Cloud Identity
  • Social Auth supports Facebook, Twitter/X, GitHub, Apple, Microsoft, and Yahoo providers
  • Phone Auth provides SMS-based verification with international support
  • Anonymous Auth offers guest access with account linking upgrade path
  • Custom Claims enable role-based access and admin privileges
  • Security Rules provide integration with Firestore, Storage, and Realtime Database

Context7 Documentation Access:

  • Use resolve-library-id with "firebase" to get Context7 library ID
  • Use get-library-docs with resolved ID and topic "authentication" for latest API

Platform SDK Support:

  • Web uses firebase/auth with modular SDK version 9 and higher
  • iOS uses FirebaseAuth with Swift and SwiftUI
  • Android uses firebase-auth with Kotlin
  • Flutter uses the firebase_auth package
  • React Native uses @react-native-firebase/auth

Quick Decision Tree:

  • Need Google ecosystem integration? Use Firebase Auth
  • Building mobile-first application? Use Firebase Auth
  • Need serverless Cloud Functions? Use Firebase Auth
  • Need anonymous guest access? Use Firebase Auth
  • Existing Firebase infrastructure? Use Firebase Auth

Module Index

This skill uses progressive disclosure with specialized modules for detailed implementation guidance.

Social Authentication

File: modules/social-auth.md

Covers Google Sign-In, Facebook Login, Apple Sign-In, Twitter/X, GitHub, and Microsoft authentication. Includes web, Flutter, iOS, and Android implementations with configuration requirements and error handling.

Key Topics include Google Sign-In with OAuth scopes and custom parameters, Facebook Login with Graph API access, Apple Sign-In which is required for iOS apps with third-party login, account linking between providers, and error handling for popup and redirect flows.

Phone Authentication

File: modules/phone-auth.md

Covers SMS-based phone number authentication with international support, reCAPTCHA verification, and platform-specific implementations.

Key Topics include web implementation with RecaptchaVerifier, Flutter verifyPhoneNumber flow with auto-verification, iOS and Android native implementations, E.164 phone number formatting, and error handling and rate limiting.

Custom Claims and Role Management

File: modules/custom-claims.md

Covers custom claims, role-based access control (RBAC), and admin privileges with Security Rules integration.

Key Topics include setting claims with Admin SDK for Node.js, Python, and Go, Cloud Functions for claim management, reading claims on client for Web, Flutter, and iOS, Security Rules integration for Firestore and Storage, and token refresh strategies.


Implementation Guide

Firebase Project Setup

Step 1: Create Firebase project at console.firebase.google.com. Step 2: Add your app for Web, iOS, Android, or Flutter. Step 3: Enable desired authentication providers. Step 4: Download and configure SDK credentials.

Web SDK Initialization

Import initializeApp from firebase/app and getAuth with onAuthStateChanged from firebase/auth. Create a firebaseConfig object with apiKey, authDomain, and projectId values. Call initializeApp with the config to get the app instance. Call getAuth with the app to get the auth instance. Use onAuthStateChanged to listen for authentication state changes, logging signed in with user.uid when user exists or signed out when null.

Flutter SDK Initialization

Import firebase_core and firebase_auth packages. In the main function, ensure Flutter bindings are initialized, await Firebase.initializeApp(), then run the app. Set up an auth state listener using FirebaseAuth.instance.authStateChanges().listen() to handle User objects, logging signed in with user.uid when user is not null.

Anonymous Authentication

Import signInAnonymously, linkWithCredential, and EmailAuthProvider from firebase/auth. Call signInAnonymously with the auth instance to create an anonymous user, logging the anonymous UID from result.user.uid. To upgrade to a permanent account, create a credential using EmailAuthProvider.credential with email and password, then call linkWithCredential with the current user and credential.

Session Persistence

Import setPersistence, browserLocalPersistence, and browserSessionPersistence from firebase/auth. Call setPersistence with auth and browserLocalPersistence to persist across browser sessions as the default behavior. Call setPersistence with auth and browserSessionPersistence to clear the session on tab close.


Security Rules Integration

Firestore Rules

For Firestore security rules, use rules_version 2 and service cloud.firestore. In the databases match block, create a users collection match with userId wildcard. Allow read and write if request.auth is not null and request.auth.uid equals userId. Create an admin collection match with document wildcard. Allow read and write if request.auth.token.admin equals true.

Storage Rules

For Firebase Storage security rules, use rules_version 2 and service firebase.storage. In the bucket match block, create a users path match with userId wildcard and allPaths wildcard. Allow read and write if request.auth is not null and request.auth.uid equals userId.


Advanced Patterns

For advanced implementation patterns, see reference.md covering MFA, session cookies, Cloud Functions triggers, and Admin SDK setup. See examples.md for complete authentication services, React hooks, and Flutter providers.


Resources

Extended Documentation:

  • reference.md provides advanced patterns and configuration guides
  • examples.md provides working code examples across platforms

Module Files:

  • modules/social-auth.md covers social identity providers
  • modules/phone-auth.md covers phone number authentication
  • modules/custom-claims.md covers role-based access control

Firebase Official Resources:

  • Firebase Console at console.firebase.google.com
  • Authentication Documentation at firebase.google.com/docs/auth
  • Security Rules Reference at firebase.google.com/docs/rules

Works Well With:

  • moai-platform-firestore for Firestore database with auth-based security
  • moai-lang-flutter for Flutter SDK for mobile Firebase Auth
  • moai-lang-typescript for TypeScript patterns for Firebase SDK
  • moai-domain-backend for backend architecture with Firebase Admin SDK

Status: Production Ready Version: 2.1.0 (Modular Architecture) Last Updated: 2026-01-11 Provider Coverage: Firebase Authentication Only

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

29.63%
按下载量换算61

OpenCode

21.74%
按下载量换算45

trae

18.32%
按下载量换算38

Antigravity

12.42%
按下载量换算26

windsurf

6.48%
按下载量换算13

Codex

3.29%
按下载量换算7

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills