Skip to content

Commit f616fb1

Browse files
feat: add Claude code plugin config (#107)
Co-authored-by: Averi Kitsch <akitsch@google.com>
1 parent 098f1d3 commit f616fb1

2 files changed

Lines changed: 43 additions & 0 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "firestore-native-marketplace",
3+
"owner": {
4+
"name": "Google LLC",
5+
"email": "data-cloud-ai-integrations@google.com"
6+
},
7+
"metadata": {
8+
"description": "Agent skills for Firestore to connect and interact with databases, collections, and documents."
9+
},
10+
"plugins": [
11+
{
12+
"name": "firestore-native",
13+
"source": "./"
14+
}
15+
]
16+
}

.claude-plugin/plugin.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "firestore-native",
3+
"version": "0.2.1",
4+
"description": "Connect and interact with Firestore databases, collections, and documents.",
5+
"author": {
6+
"name": "Google LLC",
7+
"email": "data-cloud-ai-integrations@google.com"
8+
},
9+
"homepage": "https://cloud.google.com/firestore",
10+
"license": "Apache-2.0",
11+
"repository": "https://github.com/gemini-cli-extensions/firestore-native",
12+
"skills": "./skills/",
13+
"userConfig": {
14+
"firestore_project": {
15+
"title": "Project ID",
16+
"description": "ID of the Google Cloud project",
17+
"type": "string",
18+
"sensitive": false
19+
},
20+
"firestore_database": {
21+
"title": "Database ID",
22+
"description": "(Optional) ID of the Firestore database (Default: '(default)')",
23+
"type": "string",
24+
"sensitive": false
25+
}
26+
}
27+
}

0 commit comments

Comments
 (0)