Skip to content

Commit 3902c55

Browse files
authored
Merge branch 'main' into feature/add-skills-support
2 parents 6ab4682 + e4a1f12 commit 3902c55

File tree

3 files changed

+104
-0
lines changed

3 files changed

+104
-0
lines changed

.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": "cloud-sql-sqlserver-marketplace",
3+
"owner": {
4+
"name": "Google LLC",
5+
"email": "data-cloud-ai-integrations@google.com"
6+
},
7+
"metadata": {
8+
"description": "Agent skills for Cloud SQL for SQL Server to query, manage, and monitor databases."
9+
},
10+
"plugins": [
11+
{
12+
"name": "cloud-sql-sqlserver",
13+
"source": "./"
14+
}
15+
]
16+
}

.claude-plugin/plugin.json

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
{
2+
"name": "cloud-sql-sqlserver",
3+
"version": "0.1.8",
4+
"description": "Connect to Cloud SQL for SQL Server",
5+
"author": {
6+
"name": "Google LLC",
7+
"email": "data-cloud-ai-integrations@google.com"
8+
},
9+
"homepage": "https://cloud.google.com/sql/docs/sqlserver",
10+
"license": "Apache-2.0",
11+
"repository": "https://github.com/gemini-cli-extensions/cloud-sql-sqlserver",
12+
"skills": "./skills/",
13+
"userConfig": {
14+
"cloud_sql_mssql_project": {
15+
"title": "Project Name",
16+
"description": "Name of the Google Cloud project",
17+
"type": "string",
18+
"sensitive": false
19+
},
20+
"cloud_sql_mssql_region": {
21+
"title": "Region",
22+
"description": "Region of the Cloud SQL instance",
23+
"type": "string",
24+
"sensitive": false
25+
},
26+
"cloud_sql_mssql_instance": {
27+
"title": "Instance ID",
28+
"description": "ID of the Cloud SQL instance",
29+
"type": "string",
30+
"sensitive": false
31+
},
32+
"cloud_sql_mssql_database": {
33+
"title": "Database",
34+
"description": "Name of the database",
35+
"type": "string",
36+
"sensitive": false
37+
},
38+
"cloud_sql_mssql_user": {
39+
"title": "User",
40+
"description": "Username of the database user",
41+
"type": "string",
42+
"sensitive": false
43+
},
44+
"cloud_sql_mssql_password": {
45+
"title": "Password",
46+
"description": "Password of the database user",
47+
"type": "string",
48+
"sensitive": false
49+
},
50+
"cloud_sql_mssql_ip_type": {
51+
"title": "Instance IP assignment",
52+
"description": "(Optional) Type of the IP address: PUBLIC, PRIVATE, or PSC (Default: Public)",
53+
"type": "string",
54+
"sensitive": false
55+
}
56+
}
57+
}

.codex-plugin/plugin.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "cloud-sql-sqlserver",
3+
"version": "0.1.8",
4+
"description": "Connect to Cloud SQL for SQL Server",
5+
"author": {
6+
"name": "Google LLC",
7+
"email": "data-cloud-ai-integrations@google.com"
8+
},
9+
"homepage": "https://cloud.google.com/sql/docs/sqlserver",
10+
"repository": "https://github.com/gemini-cli-extensions/cloud-sql-sqlserver",
11+
"license": "Apache-2.0",
12+
"keywords": [
13+
"cloud-sql",
14+
"sql-server",
15+
"database"
16+
],
17+
"skills": "./skills/",
18+
"interface": {
19+
"displayName": "Cloud SQL for SQL Server",
20+
"shortDescription": "Interact with CloudSQL for SQL Server instances.",
21+
"developerName": "Google LLC",
22+
"category": "Database",
23+
"capabilities": [
24+
"Read",
25+
"Write"
26+
],
27+
"defaultPrompt": [
28+
"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."
29+
]
30+
}
31+
}

0 commit comments

Comments
 (0)