thinkfleetai/thinkfleet-engine

firebase

Manage Firebase — Firestore documents, Realtime Database, and Auth users via the REST API.

First seen Mar 1, 2026

Installation

$ npx skills add thinkfleetai/thinkfleet-engine --skill firebase

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from thinkfleetai/thinkfleet-engine · top by installs.

npx skills add thinkfleetai/thinkfleet-engine

Browse all from thinkfleetai/thinkfleet-engine

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,425 B
  • docs SUMMARY.md 108 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Firebase

Manage Firestore, Realtime Database, and Auth.

Environment Variables

  • FIREBASEPROJECTID - Firebase project ID
  • GOOGLEACCESSTOKEN - 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.