-
Notifications
You must be signed in to change notification settings - Fork 12
feat: adopt Agent Plugin spec and generate harness manifests #105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
02048ad
feat: adopt Agent Plugin spec and generate harness manifests
wangauone 27c26a8
feat: add marketplace.json for Claude Code and Codex
wangauone f7baa10
docs: document installation and configuration for all supported harne…
wangauone f7a80b2
chore: order config required-first
wangauone File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| { | ||
| "name": "postgres", | ||
| "owner": { | ||
| "name": "Google LLC", | ||
| "email": "data-cloud-ai-integrations@google.com" | ||
| }, | ||
| "metadata": { | ||
| "description": "Connect and interact with a PostgreSQL database and data." | ||
| }, | ||
| "plugins": [ | ||
| { | ||
| "name": "postgres", | ||
| "source": "./" | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,69 @@ | ||
| { | ||
| "name": "postgres", | ||
| "version": "0.2.2", | ||
| "description": "Connect and interact with a PostgreSQL database and data", | ||
| "author": { | ||
| "name": "Google LLC", | ||
| "email": "data-cloud-ai-integrations@google.com" | ||
| }, | ||
| "repository": "https://github.com/gemini-cli-extensions/postgres", | ||
| "license": "Apache-2.0", | ||
| "userConfig": { | ||
| "postgres_database": { | ||
| "title": "Database", | ||
| "description": "Name of the database", | ||
| "type": "string", | ||
| "sensitive": false | ||
| }, | ||
| "postgres_user": { | ||
| "title": "User", | ||
| "description": "Username of the database user", | ||
| "type": "string", | ||
| "sensitive": false | ||
| }, | ||
| "postgres_password": { | ||
| "title": "Password", | ||
| "description": "Password of the database user", | ||
| "type": "string", | ||
| "sensitive": true | ||
| }, | ||
| "postgres_host": { | ||
| "title": "Host", | ||
| "description": "Host or IP address of the PostgreSQL server", | ||
| "type": "string", | ||
| "sensitive": false | ||
| }, | ||
| "postgres_port": { | ||
| "title": "Port", | ||
| "description": "Port number of the PostgreSQL server", | ||
| "type": "string", | ||
| "sensitive": false | ||
| }, | ||
| "postgres_query_params": { | ||
| "title": "Query Params", | ||
| "description": "(Optional) Connection String Parameters", | ||
| "type": "string", | ||
| "sensitive": false | ||
| } | ||
| }, | ||
| "mcpServers": { | ||
| "postgresql": { | ||
| "command": "npx", | ||
| "args": [ | ||
| "-y", | ||
| "@toolbox-sdk/server@1.8.0", | ||
| "--prebuilt", | ||
| "postgres", | ||
| "--stdio" | ||
| ], | ||
| "env": { | ||
| "POSTGRES_DATABASE": "${user_config.postgres_database}", | ||
| "POSTGRES_USER": "${user_config.postgres_user}", | ||
| "POSTGRES_PASSWORD": "${user_config.postgres_password}", | ||
| "POSTGRES_HOST": "${user_config.postgres_host}", | ||
| "POSTGRES_PORT": "${user_config.postgres_port}", | ||
| "POSTGRES_QUERY_PARAMS": "${user_config.postgres_query_params}" | ||
| } | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| { | ||
| "mcpServers": { | ||
| "postgresql": { | ||
| "command": "npx", | ||
| "args": [ | ||
| "-y", | ||
| "@toolbox-sdk/server@1.8.0", | ||
| "--prebuilt", | ||
| "postgres", | ||
| "--stdio" | ||
| ], | ||
| "env_vars": [ | ||
| "POSTGRES_DATABASE", | ||
| "POSTGRES_USER", | ||
| "POSTGRES_PASSWORD", | ||
| "POSTGRES_HOST", | ||
| "POSTGRES_PORT", | ||
| "POSTGRES_QUERY_PARAMS" | ||
| ] | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "name": "postgres", | ||
| "version": "0.2.2", | ||
| "description": "Connect and interact with a PostgreSQL database and data", | ||
| "author": { | ||
| "name": "Google LLC", | ||
| "email": "data-cloud-ai-integrations@google.com" | ||
| }, | ||
| "repository": "https://github.com/gemini-cli-extensions/postgres", | ||
| "license": "Apache-2.0", | ||
| "mcpServers": "./.codex-plugin/.mcp.json" | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| { | ||
| "$schema": "https://agent-plugins.org/schemas/1.0.0/mcp.schema.json", | ||
| "mcpServers": { | ||
| "postgresql": { | ||
| "type": "stdio", | ||
| "command": "npx", | ||
| "args": [ | ||
| "-y", | ||
| "@toolbox-sdk/server@1.8.0", | ||
| "--prebuilt", | ||
| "postgres", | ||
| "--stdio" | ||
| ] | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| { | ||
| "mcpServers": { | ||
| "postgresql": { | ||
| "command": "npx", | ||
| "args": [ | ||
| "-y", | ||
| "@toolbox-sdk/server@1.8.0", | ||
| "--prebuilt", | ||
| "postgres", | ||
| "--stdio" | ||
| ] | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| { | ||
| "name": "postgres", | ||
| "version": "0.2.2", | ||
| "description": "Connect and interact with a PostgreSQL database and data", | ||
| "author": { | ||
| "name": "Google LLC", | ||
| "email": "data-cloud-ai-integrations@google.com" | ||
| }, | ||
| "repository": "https://github.com/gemini-cli-extensions/postgres", | ||
| "license": "Apache-2.0", | ||
| "extensions": { | ||
| "com.google.cloud.data.agent-plugins": { | ||
| "config": [ | ||
| { | ||
| "key": "POSTGRES_DATABASE", | ||
| "title": "Database", | ||
| "description": "Name of the database" | ||
| }, | ||
| { | ||
| "key": "POSTGRES_USER", | ||
| "title": "User", | ||
| "description": "Username of the database user" | ||
| }, | ||
| { | ||
| "key": "POSTGRES_PASSWORD", | ||
| "title": "Password", | ||
| "description": "Password of the database user", | ||
| "sensitive": true | ||
| }, | ||
| { | ||
| "key": "POSTGRES_HOST", | ||
| "title": "Host", | ||
| "description": "Host or IP address of the PostgreSQL server" | ||
| }, | ||
| { | ||
| "key": "POSTGRES_PORT", | ||
| "title": "Port", | ||
| "description": "Port number of the PostgreSQL server" | ||
| }, | ||
| { | ||
| "key": "POSTGRES_QUERY_PARAMS", | ||
| "title": "Query Params", | ||
| "description": "(Optional) Connection String Parameters" | ||
| } | ||
| ], | ||
| "gemini": { | ||
| "contextFileName": "POSTGRESQL.md", | ||
| "mcpServerName": "postgresql" | ||
| } | ||
| } | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.