Agent skill
firebase
Manage Firebase — Firestore documents, Realtime Database, and Auth users via the REST API.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/firebase-thinkfleetai-thinkfleet-engine
Metadata
Additional technical details for this skill
- thinkfleetbot
-
{ "emoji": "\ud83d\udd25", "requires": { "env": [ "FIREBASE_PROJECT_ID", "GOOGLE_ACCESS_TOKEN" ], "bins": [ "curl", "jq" ] } }
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.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?