-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathplugin.json
More file actions
78 lines (78 loc) · 2.54 KB
/
Copy pathplugin.json
File metadata and controls
78 lines (78 loc) · 2.54 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "cloud-sql-postgresql",
"version": "0.4.0",
"description": "Create, connect, and interact with a Cloud SQL for PostgreSQL database and data.",
"author": {
"name": "Google LLC",
"email": "data-cloud-ai-integrations@google.com"
},
"homepage": "https://cloud.google.com/sql",
"repository": "https://github.com/gemini-cli-extensions/cloud-sql-postgresql",
"license": "Apache-2.0",
"keywords": [
"cloud-sql",
"postgresql",
"database"
],
"extensions": {
"com.google.cloud.data.agent-plugins": {
"config": [
{
"key": "CLOUD_SQL_POSTGRES_PROJECT",
"title": "Project ID",
"description": "ID of the Google Cloud project"
},
{
"key": "CLOUD_SQL_POSTGRES_REGION",
"title": "Location",
"description": "Region of the Cloud SQL instance"
},
{
"key": "CLOUD_SQL_POSTGRES_INSTANCE",
"title": "Instance",
"description": "Name of the Cloud SQL instance"
},
{
"key": "CLOUD_SQL_POSTGRES_DATABASE",
"title": "Database",
"description": "Name of the database"
},
{
"key": "CLOUD_SQL_POSTGRES_USER",
"title": "User",
"description": "(Optional) Username of the database user (Default: IAM user)"
},
{
"key": "CLOUD_SQL_POSTGRES_PASSWORD",
"title": "Password",
"description": "(Optional) Password of the database user (Default: IAM user)"
},
{
"key": "CLOUD_SQL_POSTGRES_IP_TYPE",
"title": "IP Type",
"description": "(Optional) Type of the IP address: PUBLIC, PRIVATE, or PSC (Default: Public)"
}
],
"gemini": {
"contextFileName": "CLOUD-SQL-POSTGRESQL.md",
"mcpServerName": "cloud-sql-postgres"
},
"codex": {
"interface": {
"displayName": "Cloud SQL for PostgreSQL",
"shortDescription": "Interact with CloudSQL for PostgreSQL instances.",
"developerName": "Google LLC",
"category": "Database",
"capabilities": [
"Read",
"Write"
],
"defaultPrompt": [
"You are a highly skilled database engineer and database administrator. Your purpose is to help the developer build and interact with databases and utilize data context throughout the entire software delivery cycle."
]
}
}
}
}
}