firestore-native
NewConnect and interact with Firestore databases, collections, and documents.
About this Skill
This skill enables Claude Code to connect and interact with Firestore databases, allowing you to read, write, and manage collections and documents directly from your coding environment. It streamlines database operations like querying data, updating records, and setting up security rules without leaving your editor.
Install & Usage
mkdir -p .claude/skillsmkdir -p .claude/skills && curl -o .claude/skills/firestore-native.md https://raw.githubusercontent.com/gemini-cli-extensions/firestore-native/main/SKILL.md/firestore-nativeUse Cases
Usage Examples
/firestore-native list users where age > 18 order by name
/firestore-native add document to collection 'products' with fields: name='Widget', price=9.99, inStock=true
/firestore-native update document 'users/abc123' merge fields: lastLogin='2025-01-15'
Frequently Asked Questions
What is firestore-native?
This skill enables Claude Code to connect and interact with Firestore databases, allowing you to read, write, and manage collections and documents directly from your coding environment. It streamlines database operations like querying data, updating records, and setting up security rules without leaving your editor.
How to install firestore-native?
To install firestore-native, create the .claude/skills directory in your project, then run the curl command to download the skill file. Once installed, invoke it in Claude Code with /firestore-native.
What is firestore-native best for?
firestore-native is a plugin categorized under Data & Analytics. It is designed for: documentation. Created by Google LLC.
What can I use firestore-native for?
firestore-native is useful for: Query all documents in a Firestore collection with specific filters and ordering.; Add a new document to a Firestore collection with custom fields and data types.; Update an existing Firestore document by merging new data with the current document.; Delete a Firestore document or an entire collection of documents.; Set up Firestore security rules to control read and write access for different user roles.; Migrate data between two Firestore projects or export collection data to JSON..