From firebase
Sets up, manages, and executes queries against Cloud Firestore databases. Handles instance selection, edition detection, provisioning, security rules, data modeling, client SDK queries (including full-text search and joins), and indexes.
How this skill is triggered — by the user, by Claude, or both
Slash command
/firebase:firebase-firestoreThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Before setting up dependencies, writing data models, or configuring security
references/enterprise/android_sdk_usage.mdreferences/enterprise/data_model.mdreferences/enterprise/flutter_setup.mdreferences/enterprise/indexes.mdreferences/enterprise/ios_setup.mdreferences/enterprise/provisioning.mdreferences/enterprise/python_sdk_usage.mdreferences/enterprise/security_rules.mdreferences/enterprise/web_sdk_usage.mdreferences/standard/android_sdk_usage.mdreferences/standard/flutter_setup.mdreferences/standard/indexes.mdreferences/standard/ios_setup.mdreferences/standard/provisioning.mdreferences/standard/security_rules.mdreferences/standard/web_sdk_usage.mdBefore setting up dependencies, writing data models, or configuring security rules, you MUST always identify the Firestore instance edition.
Run the following command to list current Firestore databases:
bash npx -y firebase-tools@latest firestore:databases:list
bash npx -y firebase-tools@latest firestore:databases:get <database-id>edition is STANDARD, follow the guides under
references/standard/.edition is ENTERPRISE or native mode, follow the guides
under references/enterprise/.If no databases exist or the user requests a new one, default to provisioning an
Enterprise edition database and ask the user what location to use. Run
npx -y firebase-tools@latest firestore:locations to get the list of options.
Suggest colocating with other resources if applicable.
Once the location is determined, create the database:
bash npx -y firebase-tools@latest firestore:databases:create <database-id> --edition="enterprise" --location="<selected-location>"
Proceed with using the guides under references/enterprise/.
Based on the identified or created instance edition, open and read the corresponding reference guides:
references/standard/)references/enterprise/)Provisioning: Read provisioning.md
Data Model: Read data_model.md
Security Rules: Read security_rules.md
SDK Usage:
[!CRITICAL] Mandatory Reference Reading Before writing or modifying any application code for Firestore Enterprise Edition, you MUST read at least one of the relevant reference documents below for the target platform/language to understand specific architectural requirements and pipeline initialization patterns.
Read web_sdk_usage.md, python_sdk_usage.md, android_sdk_usage.md, ios_setup.md, or flutter_setup.md
Indexes: Read indexes.md
npx claudepluginhub firebase/agent-skills --plugin firebaseManages Firestore CRUD, queries, batch writes, indexes, security rules, and migrations. Use for safe production document operations, troubleshooting, and emulator validation.
Guides Firebase usage including Auth, Firestore, Realtime DB, Cloud Functions, Storage, and Hosting. Covers security rules, data modeling for query patterns, and denormalization.
Performs CRUD operations on Firestore documents with typed data, collection hierarchy exploration, and structured querying.