Skip to content

Commit bb6af1f

Browse files
committed
feat: add claude code plugin config
1 parent e44f6b2 commit bb6af1f

2 files changed

Lines changed: 65 additions & 0 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "Google Data Cloud Marketplace",
3+
"owner": {
4+
"name": "Google LLC",
5+
"email": "data-cloud-ai-integrations@google.com"
6+
},
7+
"plugins": [
8+
{
9+
"name": "cloud-sql-postgresql",
10+
"source": "./",
11+
"description": "Cloud SQL skills"
12+
}
13+
]
14+
}

.claude-plugin/plugin.json

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{
2+
"name": "cloud-sql-postgresql",
3+
"version": "0.1.0",
4+
"description": "Create, connect, and interact with a Cloud SQL for PostgreSQL database and data.",
5+
"repository": "https://github.com/gemini-cli-extensions/cloud-sql-postgresql",
6+
"skills": "./skills/",
7+
"userConfig": {
8+
"cloud_sql_postgres_project": {
9+
"title": "Project ID",
10+
"description": "ID of the Google Cloud project",
11+
"type": "string",
12+
"sensitive": false
13+
},
14+
"cloud_sql_postgres_region": {
15+
"title": "Region",
16+
"description": "Region of the Cloud SQL instance",
17+
"type": "string",
18+
"sensitive": false
19+
},
20+
"cloud_sql_postgres_instance": {
21+
"title": "Instance Name",
22+
"description": "Name of the Cloud SQL instance",
23+
"type": "string",
24+
"sensitive": false
25+
},
26+
"cloud_sql_postgres_database": {
27+
"title": "Database Name",
28+
"description": "Name of the database",
29+
"type": "string",
30+
"sensitive": false
31+
},
32+
"cloud_sql_postgres_user": {
33+
"title": "Database User",
34+
"description": "(Optional) Username of the database user (Default: IAM user)",
35+
"type": "string",
36+
"sensitive": false
37+
},
38+
"cloud_sql_postgres_password": {
39+
"title": "Database Password",
40+
"description": "(Optional) Password of the database user (Default: IAM user)",
41+
"type": "string",
42+
"sensitive": false
43+
},
44+
"cloud_sql_postgres_ip_type": {
45+
"title": "IP Type",
46+
"description": "(Optional) Type of the IP address: PUBLIC, PRIVATE, or PSC (Default: Public)",
47+
"type": "string",
48+
"sensitive": false
49+
}
50+
}
51+
}

0 commit comments

Comments
 (0)