-
Notifications
You must be signed in to change notification settings - Fork 215
Add Codex CLI plugin manifest #300
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| { | ||
| "name": "dbhub", | ||
| "version": "0.1.0", | ||
| "description": "Token-efficient database operations for Postgres, MySQL, SQLite from Codex via MCP", | ||
| "author": { | ||
| "name": "bytebase", | ||
| "url": "https://github.com/bytebase/dbhub" | ||
| }, | ||
| "homepage": "https://github.com/bytebase/dbhub", | ||
| "repository": "https://github.com/bytebase/dbhub", | ||
| "keywords": [ | ||
| "mcp", | ||
| "codex" | ||
| ], | ||
| "mcpServers": "./.mcp.json", | ||
| "skills": "./skills/", | ||
| "interface": { | ||
| "displayName": "DBHub", | ||
| "shortDescription": "Token-efficient database operations for Postgres, MySQL, SQLite from Codex via MCP", | ||
| "longDescription": "Zero-dependency, token-efficient database MCP server for Postgres, MySQL, SQL Server, MariaDB, SQLite.", | ||
| "category": "Database", | ||
| "websiteURL": "https://github.com/bytebase/dbhub" | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,20 @@ | ||||||||||
| name: Plugin Quality Gate | ||||||||||
|
|
||||||||||
| on: | ||||||||||
| pull_request: | ||||||||||
| paths: | ||||||||||
| - ".codex-plugin/**" | ||||||||||
| - "skills/**" | ||||||||||
| - ".mcp.json" | ||||||||||
|
|
||||||||||
| jobs: | ||||||||||
| scan: | ||||||||||
| runs-on: ubuntu-latest | ||||||||||
| steps: | ||||||||||
| - uses: actions/checkout@v4 | ||||||||||
| - name: Codex plugin quality gate | ||||||||||
| uses: hashgraph-online/hol-codex-plugin-scanner-action@v1 | ||||||||||
|
||||||||||
| uses: hashgraph-online/hol-codex-plugin-scanner-action@v1 | |
| # Update process: when upgrading this action, replace the pinned commit SHA | |
| # below with the commit for the reviewed upstream release you intend to use. | |
| uses: hashgraph-online/hol-codex-plugin-scanner-action@<FULL_LENGTH_COMMIT_SHA> |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,13 @@ | ||||||
| { | ||||||
| "mcpServers": { | ||||||
| "dbhub": { | ||||||
| "command": "npx", | ||||||
| "args": [ | ||||||
| "-y", | ||||||
| "@bytebase/dbhub@2.26.8", | ||||||
|
||||||
| "@bytebase/dbhub@2.26.8", | |
| "@bytebase/dbhub@latest", |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,148 +1,12 @@ | ||||||
| --- | ||||||
| name: dbhub | ||||||
| description: Guide for querying databases through DBHub MCP server. Use this skill whenever you need to explore database schemas, inspect tables, or run SQL queries via DBHub's MCP tools (search_objects, execute_sql). Activates on any database query task, schema exploration, data retrieval, or SQL execution through MCP — even if the user just says "check the database" or "find me some data." This skill ensures you follow the correct explore-first workflow instead of guessing table structures. | ||||||
| description: Token-efficient database operations for Postgres, MySQL, SQLite from Codex via MCP | ||||||
|
||||||
| description: Token-efficient database operations for Postgres, MySQL, SQLite from Codex via MCP | |
| description: Token-efficient database operations for Postgres, MySQL, SQLite, SQL Server, and MariaDB from Codex via MCP |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shortDescriptionlists only Postgres/MySQL/SQLite, butlongDescriptionalso claims SQL Server and MariaDB support. Please reconcile these so the plugin metadata consistently reflects supported databases (either expand the short text or narrow the long text).