Skip to content
Draft
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
51 changes: 51 additions & 0 deletions .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"name": "cloud-sql-postgresql",
"version": "0.1.0",
"description": "Create, connect, and interact with a Cloud SQL for PostgreSQL database and data.",
"repository": "https://github.com/gemini-cli-extensions/cloud-sql-postgresql",
"skills": "./skills/",
"userConfig": {
"cloud_sql_postgres_project": {
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If we need to skip the env vars that is fine. Let's find the MVP support for Claude and Codex and we can make the experience better from there

"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
}
}
}
2 changes: 1 addition & 1 deletion .github/workflows/package-and-upload-assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- { os: "linux", arch: "x64", download_path_segment: "linux/amd64", binary_suffix: "", archive_extension: "tar.gz", archive_command: 'tar -czvf "${ARCHIVE_NAME}" -C staging .' }
- { os: "darwin", arch: "arm64", download_path_segment: "darwin/arm64", binary_suffix: "", archive_extension: "tar.gz", archive_command: 'tar -czvf "${ARCHIVE_NAME}" -C staging .' }
- { os: "darwin", arch: "x64", download_path_segment: "darwin/amd64", binary_suffix: "", archive_extension: "tar.gz", archive_command: 'tar -czvf "${ARCHIVE_NAME}" -C staging .' }
- { os: "win32", arch: "x64", download_path_segment: "windows/amd64", binary_suffix: ".exe", archive_extension: "zip", archive_command: '(cd staging && zip ../"${ARCHIVE_NAME}" *)' }
- { os: "win32", arch: "x64", download_path_segment: "windows/amd64", binary_suffix: ".exe", archive_extension: "zip", archive_command: '(cd staging && zip -r ../"${ARCHIVE_NAME}" *)' }
steps:
- name: Checkout code at the new tag
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
Expand Down
122 changes: 0 additions & 122 deletions skills/cloud-sql-postgres-admin/SKILL.md

This file was deleted.

94 changes: 0 additions & 94 deletions skills/cloud-sql-postgres-admin/scripts/clone_instance.js

This file was deleted.

93 changes: 0 additions & 93 deletions skills/cloud-sql-postgres-admin/scripts/create_backup.js

This file was deleted.

Loading
Loading