-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathplugin.json
More file actions
63 lines (63 loc) · 1.92 KB
/
Copy pathplugin.json
File metadata and controls
63 lines (63 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "spanner",
"version": "0.3.5",
"description": "Connect and interact with Spanner data using natural language.",
"author": {
"name": "Google LLC",
"email": "data-cloud-ai-integrations@google.com"
},
"homepage": "https://cloud.google.com/spanner",
"repository": "https://github.com/gemini-cli-extensions/spanner",
"license": "Apache-2.0",
"keywords": [
"spanner",
"google-cloud",
"database"
],
"extensions": {
"com.google.cloud.data.agent-plugins": {
"config": [
{
"key": "SPANNER_PROJECT",
"title": "Project ID",
"description": "ID of the Google Cloud project"
},
{
"key": "SPANNER_INSTANCE",
"title": "Instance",
"description": "ID of the Spanner instance"
},
{
"key": "SPANNER_DATABASE",
"title": "Database",
"description": "ID of the Spanner database"
},
{
"key": "SPANNER_DIALECT",
"title": "Database Dialect",
"description": "(Optional) The SQL dialect of the Spanner Database: 'googlesql' or 'postgresql'. (Default: 'googlesql')"
}
],
"gemini": {
"mcpServerName": "spanner",
"contextFileName": "SPANNER.md"
},
"codex": {
"interface": {
"displayName": "Spanner",
"shortDescription": "Connect and interact with Spanner data using natural language.",
"developerName": "Google LLC",
"category": "Database",
"capabilities": [
"Read",
"Write"
],
"defaultPrompt": [
"You are a senior database engineer and administrator specializing in Spanner. Your goal is to help users explore their Spanner databases, manage schemas, and execute queries effectively."
]
}
}
}
}
}