AgentStack
SKILL verified MIT Self-run

Firebase

skill-ashish7802-awesome-api-skills-firebase · by ashish7802

A Claude skill from ashish7802/awesome-api-skills.

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

Install

$ agentstack add skill-ashish7802-awesome-api-skills-firebase

✓ 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? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Firebase Admin API Skill

Overview

Firebase Admin SDK allows privileged server environments to interact with Firestore, Auth, and Cloud Messaging.

Installation

npm install firebase-admin
pip install firebase-admin

Authentication

Authenticate using a Google Cloud Service Account key JSON file or Application Default Credentials (ADC).

Core Concepts

  • Firestore: NoSQL document database.
  • Custom Tokens: JWTs minted on the server to log users into the client SDK.
  • FCM: Firebase Cloud Messaging for push notifications.

Common Workflows

  1. Initialize initializeApp({ credential: cert(serviceAccount) }).
  2. Access Firestore: getFirestore().
  3. Perform operations bypassing security rules.

Error Handling

Catch FirebaseError. Error codes match RPC statuses (e.g., not-found, already-exists).

Security

Service accounts have absolute God-mode access. Never deploy an Admin SDK service account key to a client application.

Rate Limits

Firestore allows 10,000 writes per second per database. Batch operations are limited to 500 documents per batch.

Best Practices

Use batch() for multiple writes to ensure atomicity. Use runTransaction() when a write depends on the current value of a document.

Troubleshooting

If initialized multiple times, the SDK throws a 'default app already exists' error. Check getApps().length before initializing.

References

Why use this skill

Use this when your agent works with firebase — structured patterns beat pasted docs and prevent common hallucinations.

AI pitfalls

  • Inventing column names or schema fields
  • Using deprecated driver methods or wrong connection strings
  • Omitting connection pooling or transaction boundaries

Production checklist

  • [ ] Migrations version-controlled and applied via CI
  • [ ] Connection limits and pooling configured
  • [ ] Backups and restore procedure documented

Related skills

  • No graph relationships yet — see the knowledge graph in the docs site.

> Last Verified: 2026-07-02

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.