Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"name": "cloud-sql-postgresql-marketplace",
"owner": {
"name": "Google LLC",
"email": "data-cloud-ai-integrations@google.com"
},
"plugins": [
{
"name": "cloud-sql-postgresql",
"source": "./",
"description": "Agent skills for Cloud SQL for PostgreSQL to query, manage, and monitor databases."
}
]
}
57 changes: 57 additions & 0 deletions .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"name": "cloud-sql-postgresql",
"version": "0.3.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",
"license": "Apache-2.0",
"repository": "https://github.com/gemini-cli-extensions/cloud-sql-postgresql",
"skills": "./skills/",
"userConfig": {
"cloud_sql_postgres_project": {
"title": "Project ID",
"description": "ID of the Google Cloud project",
"type": "string",
"sensitive": false
},
"cloud_sql_postgres_region": {
"title": "Region",
"description": "Region of the Cloud SQL instance",
"type": "string",
"sensitive": false
},
"cloud_sql_postgres_instance": {
"title": "Instance Name",
"description": "Name of the Cloud SQL instance",
"type": "string",
"sensitive": false
},
"cloud_sql_postgres_database": {
"title": "Database Name",
"description": "Name of the database",
"type": "string",
"sensitive": false
},
"cloud_sql_postgres_user": {
"title": "Database User",
"description": "(Optional) Username of the database user (Default: IAM user)",
"type": "string",
"sensitive": false
},
"cloud_sql_postgres_password": {
"title": "Database Password",
"description": "(Optional) Password of the database user (Default: IAM user)",
"type": "string",
"sensitive": false
},
"cloud_sql_postgres_ip_type": {
"title": "IP Type",
"description": "(Optional) Type of the IP address: PUBLIC, PRIVATE, or PSC (Default: Public)",
"type": "string",
"sensitive": false
}
}
}
Loading