Skip to content
Merged
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
23 changes: 23 additions & 0 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "spanner-marketplace",
"interface": {
"displayName": "Spanner Agent Skills"
},
Comment thread
twishabansal marked this conversation as resolved.
"metadata": {
"description": "Agent skills to connect and interact with Spanner data using natural language."
},
"plugins": [
{
"name": "spanner",
"source": {
"source": "git",
"url": "https://github.com/gemini-cli-extensions/spanner.git"
},
"policy": {
"installation": "AVAILABLE",
"authentication": "ON_INSTALL"
},
"category": "Database"
}
]
}
39 changes: 39 additions & 0 deletions .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"name": "spanner",
"version": "0.2.6",
"description": "Connect and interact with Spanner data using natural language.",
"author": {
"name": "Google LLC",
"email": "data-cloud-ai-integrations@google.com"
},
"homepage": "https://cloud.google.com/spanner",
"license": "Apache-2.0",
"repository": "https://github.com/gemini-cli-extensions/spanner",
"skills": "./skills/",
"userConfig": {
"spanner_project": {
"title": "Project ID",
"description": "ID of the Google Cloud project",
"type": "string",
"sensitive": false
},
"spanner_instance": {
"title": "Instance",
"description": "ID of the Spanner instance",
"type": "string",
"sensitive": false
},
"spanner_database": {
"title": "Database",
"description": "ID of the Spanner database",
"type": "string",
"sensitive": false
},
"spanner_dialect": {
"title": "Database Dialect",
"description": "(Optional) The SQL dialect of the Spanner Database: 'googlesql' or 'postgresql'. (Default: 'googlesql')",
"type": "string",
"sensitive": false
}
}
}
Loading