firebase
Installation
SKILL.md
Firebase
Manage Firestore, Realtime Database, and Auth.
Environment Variables
FIREBASE_PROJECT_ID- Firebase project IDGOOGLE_ACCESS_TOKEN- OAuth access token
List Firestore documents
curl -s -H "Authorization: Bearer $GOOGLE_ACCESS_TOKEN" \
"https://firestore.googleapis.com/v1/projects/$FIREBASE_PROJECT_ID/databases/(default)/documents/COLLECTION?pageSize=10" | jq '.documents[] | {name, fields}'
Get Firestore document
curl -s -H "Authorization: Bearer $GOOGLE_ACCESS_TOKEN" \
"https://firestore.googleapis.com/v1/projects/$FIREBASE_PROJECT_ID/databases/(default)/documents/COLLECTION/DOC_ID" | jq '{name, fields}'
List Auth users
curl -s -X POST -H "Authorization: Bearer $GOOGLE_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
"https://identitytoolkit.googleapis.com/v1/projects/$FIREBASE_PROJECT_ID/accounts:batchGet?maxResults=10" | jq '.users[] | {localId, email, displayName}'
Read Realtime Database
curl -s "$FIREBASE_PROJECT_ID.firebaseio.com/path.json?auth=$GOOGLE_ACCESS_TOKEN" | jq '.'
Notes
- Always confirm before writing or deleting data.
Related skills
More from thinkfleetai/thinkfleet-engine
local-whisper
Local speech-to-text using OpenAI Whisper. Runs fully offline after model download. High quality transcription with multiple model sizes.
149whoop
WHOOP morning check-in (recovery/sleep/strain) with suggestions.
6playwright-cli
Browser automation via Playwright CLI. Open pages, interact with elements, take screenshots, and more. Ideal for coding agents and automated testing workflows.
4pdf-reader
PDF reading and extraction
4github-action-gen
Generate GitHub Actions workflows from plain English. Use when setting up CI.
3merge-resolve
AI-powered git merge conflict resolution
3