AgentStack
SKILL verified Apache-2.0 Self-run

Firebase Firestore

skill-firebase-agent-skills-firebase-firestore · by firebase

>-

No reviews yet
0 installs
10 views
0.0% view→install

Install

$ agentstack add skill-firebase-agent-skills-firebase-firestore

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Firebase Firestore? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Cloud Firestore Database and Operations

Before setting up dependencies, writing data models, or configuring security rules, you MUST always identify the Firestore instance edition.

1. Instance Selection and Edition Detection

Run the following command to list current Firestore databases: bash npx -y firebase-tools@latest firestore:databases:list

A. Instance Found

  1. For each database found, inspect its edition and details:

bash npx -y firebase-tools@latest firestore:databases:get

  1. Ask the user which database instance they wish to target or if they would

prefer to create a new instance.

  1. Once the target instance is established:
  • If the edition is STANDARD, follow the guides under

references/standard/.

  • If the edition is ENTERPRISE or native mode, follow the guides

under references/enterprise/.

B. No Instance Found (or New Requested)

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 --edition="enterprise" --location=""

Proceed with using the guides under references/enterprise/.

______________________________________________________________________

2. Specialized Guides

Based on the identified or created instance edition, open and read the corresponding reference guides:

Standard Edition (references/standard/)

  • Provisioning: Read [provisioning.md](references/standard/provisioning.md)
  • Security Rules: Read

[securityrules.md](references/standard/securityrules.md)

  • SDK Usage: Read [websdkusage.md](references/standard/websdkusage.md),

[androidsdkusage.md](references/standard/androidsdkusage.md), [iossetup.md](references/standard/iossetup.md), or [fluttersetup.md](references/standard/fluttersetup.md)

  • Indexes: Read [indexes.md](references/standard/indexes.md)

Enterprise Edition / Native Mode (references/enterprise/)

  • Provisioning: Read

[provisioning.md](references/enterprise/provisioning.md)

  • Data Model: Read [datamodel.md](references/enterprise/datamodel.md)
  • Security Rules: Read

[securityrules.md](references/enterprise/securityrules.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 [websdkusage.md](references/enterprise/websdkusage.md), [pythonsdkusage.md](references/enterprise/pythonsdkusage.md), [androidsdkusage.md](references/enterprise/androidsdkusage.md), [iossetup.md](references/enterprise/iossetup.md), or [fluttersetup.md](references/enterprise/fluttersetup.md)

  • Indexes: Read [indexes.md](references/enterprise/indexes.md)

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.