Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计通过

firestorefirestore 命令行

Agent Skill

firestore 用于处理数据库查询、表结构、迁移和数据维护任务,适合在 OpenClaw 中需要分析 schema、编写 SQL 或排查数据问题时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

9,866

周安装

407

GitHub Stars

公开资料未说明

下载量

3,223
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:firestore(firestore 命令行)
来源仓库:https://github.com/felipe0liveira/firestore
安装命令:
openclaw skills install firestore
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install firestore

简介

Firestore 工具通过 REST API 管理 Google Cloud Firestore 数据库。

  • 支持 CRUD 操作与 gcloud 令牌身份验证,适用于 NoSQL 数据维护。
  • 通过 clawhub 安装并使用 openclaw skills install firestore 命令部署。
  • 需确保 gcloud 已登录并具有目标数据库读写权限,注意生产环境安全。
  • firestore 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
firestore
description
Manage Google Cloud Firestore databases using the Firestore REST API via curl commands. Authenticate using gcloud CLI tokens to perform CRUD operations on documents and collections.
user-invocable
true
disable-model-invocation
true
metadata
{"clawdbot":{"emoji":"🔥","requires":{"bins":["curl","gcloud"]},"install":[{"id":"gcloud-sdk","kind":"manual","url":"https://docs.cloud.google.com/sdk/docs/install-sdk","bins":["gcloud"],"label":"Install Google Cloud CLI (official)"}]}}

Firestore

Manage Google Cloud Firestore databases via REST API

This skill is built on top of the official Firebase Firestore REST API reference documentation: https://firebase.google.com/docs/firestore/reference/rest

It enables you to interact with Google Cloud Firestore using the Firestore REST API through curl commands. It uses gcloud auth print-access-token to obtain authentication tokens, allowing you to perform Create, Read, Update, and Delete (CRUD) operations on Firestore documents and collections.

For related documentation:

Requirements

This skill requires curl and gcloud CLI.

For full installation and setup instructions, see installation.md.

Credentials & Environment

This skill uses OAuth 2.0 access tokens generated by gcloud auth print-access-token. The token is valid for a limited time (typically 1 hour) and inherits the permissions of the authenticated Google Cloud account.

This skill must run only with a dedicated service account context. Do not use personal user credentials or broad admin identities.

Before any operation, generate a fresh access token:

ACCESS_TOKEN=$(gcloud auth print-access-token)

Before any operation, verify the active identity is a service account:

gcloud config list --format='text(core.account,core.project)'

If the active account is not a service account (for example, it does not end with gserviceaccount.com), stop and ask the user to switch credentials before proceeding.

Security Recommendations:

  • Use a dedicated, least-privilege service account for automation tasks. Never use your personal or admin account.
  • Test in a sandbox or development project before running commands against production.
  • Verify your active project with gcloud config list before executing commands.
  • Tokens expire after approximately 1 hour — regenerate if you encounter 401 Unauthorized errors.
  • The token inherits ALL permissions of the authenticated account, including read access to sensitive data.
  • Revoke tokens immediately if you suspect unauthorized access: gcloud auth revoke
  • Audit activity regularly by reviewing Cloud Audit Logs for the project.

Security Considerations

Important: This skill can access Firestore data with the same permissions as the authenticated Google Cloud account. For safety, this skill requires explicit user approval before executing any operation, including read-only operations.

To minimize risk:

  1. Only use this skill with service accounts that have the minimum required Firestore permissions
  2. Use separate projects for development/testing and production environments
  3. Review the gcloud config list output before allowing any operations
  4. Grant only roles/datastore.viewer for read-only access or roles/datastore.user for limited read/write
  5. Never use roles/datastore.owner or roles/owner with this skill
  6. Monitor Cloud Audit Logs for unexpected Firestore API calls

What You Can Do

You can perform the following operations on Firestore databases:

  • Create — Insert new documents into collections
  • Read — Query documents with filters and conditions
  • Update — Modify specific fields in existing documents using updateMask
  • Delete — Remove documents from collections
  • List — Retrieve all documents in a collection
  • Batch operations — Perform multiple writes in a single atomic transaction

All operations use the Firestore REST API endpoint:

https://firestore.googleapis.com/v1/projects/{PROJECT_ID}/databases/{DATABASE_ID}/documents

Workflow

Before executing any Firestore operation, you MUST follow this workflow:

  1. Check active context — Run gcloud config list --format='text(core.account,core.project)' to display the active account and project. Present this to the user so they are aware of which credentials and project will be used.
  1. Generate access token — Always start by obtaining a fresh access token:
   ACCESS_TOKEN=$(gcloud auth print-access-token)
  1. Construct the curl command — Build the appropriate curl command based on the operation:

- Use the correct HTTP method (POST for create/query, GET for read, PATCH for update, DELETE for delete) - Include the Authorization: Bearer $ACCESS_TOKEN header - Set Content-Type: application/json for requests with body - Use the correct API endpoint for the project and collection

  1. For all operations (read and write) — Present the full curl command to the user and wait for explicit approval before executing. See the Approval Policy section below.
  1. Execute the command and parse the JSON response.

Important Rules

  • Always generate a fresh token first — Run ACCESS_TOKEN=$(gcloud auth print-access-token) before any operation.
  • Use proper JSON formatting — Firestore requires specific field value types (stringValue, booleanValue, integerValue, etc.).
  • Document ID generation — When creating documents, if you don't specify ?documentId=YOUR_ID in the URL, Firestore will automatically generate a unique document ID.
  • Include field paths in updateMask — When updating, use updateMask.fieldPaths to specify which fields to update.
  • Never execute any command autonomously — always present the full curl command to the user and wait for explicit approval before running it, including read-only operations.
  • Parse responses carefully — Firestore returns data in a nested format with typed values.
  • Verify project ID — Always confirm you're targeting the correct project before executing commands.

Approval Policy

All operations require explicit user confirmation before execution.

This includes:

  • Create — Creating new documents in collections
  • Read / Query / Get / List — Retrieving documents or query results
  • Update / Patch — Modifying existing document fields
  • Delete — Removing documents permanently
  • Batch writes — Any batch operation that modifies data

For every operation, the agent must:

  1. Show the full curl command that will be executed.
  2. Display the active account and project context.
  3. Wait for the user to explicitly approve before running the command.

Firestore Data Types

Firestore uses typed field values in JSON. Common types:

  • stringValue — Text strings
  • integerValue — Integer numbers (as strings)
  • doubleValue — Floating-point numbers
  • booleanValue — true/false
  • timestampValue — ISO 8601 timestamps
  • arrayValue — Arrays of values
  • mapValue — Nested objects

Example document structure:

{
  "fields": {
    "name": { "stringValue": "John Doe" },
    "age": { "integerValue": "30" },
    "active": { "booleanValue": true }
  }
}

Few-Shot Prompting Examples

Few-shot prompts and full command examples are available in examples.md.

Common Query Operators

When constructing queries, use these operators in the fieldFilter.op field:

  • EQUAL — Field equals value
  • NOT_EQUAL — Field does not equal value
  • LESS_THAN — Field is less than value
  • LESS_THAN_OR_EQUAL — Field is less than or equal to value
  • GREATER_THAN — Field is greater than value
  • GREATER_THAN_OR_EQUAL — Field is greater than or equal to value
  • ARRAY_CONTAINS — Array field contains value
  • IN — Field value is in the provided array
  • ARRAY_CONTAINS_ANY — Array field contains any of the provided values

Troubleshooting

For dedicated troubleshooting guidance, see troubleshooting.md.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

97.68%
按下载量换算3,148

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills