Token导航 LogoToken导航TokenDH.com
研究检索执行命令unknown未标认证来源可访问许可证需确认审计未展示

dbhubdbhub 数据库

Agent Skill

dbhub 用于查找、检索和筛选相关信息,适合在 Local Agent 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

392

周安装

16

下载量

127
Local Agent

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:dbhub(dbhub 数据库)
来源仓库:https://gesr.jt111sys.com
仓库路径:dbhub
安装命令:
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。当前暂无明确安装命令,请以来源页面说明为准。

简介

dbhub 是企业内部数据库访问管控技能,强制通过 Bytebase DBHub MCP 访问数据。

  • 禁止使用任何直连 SQL Server 或其他非授权路径执行查询,违者立即终止操作。
  • 仅允许在 apps/core/alembic 目录下使用 alembic 生成迁移,遵循既定流程。
  • 属于公司私有技能,外部用户无法直接使用,需内网权限方可激活。
  • dbhub 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

DBHub Database Workflow

This is a company internal DBHub skill, not an official Bytebase skill. DBHub itself is provided by @bytebase/dbhub; this skill defines the company workflow around it.

Use DBHub MCP as the only database access path. Do not write ad hoc database connection scripts unless the user explicitly asks for a custom tool.

If DBHub MCP tools are unavailable, stop database work. Do not fall back to direct SQL Server connections, application connection strings, sqlcmd, ADO.NET, PowerShell SQL modules, or custom scripts as a substitute for DBHub.

Hard Stop Conditions

Stop the current task and ask the user to restart the agent session when any of these happen:

  • You installed DBHub MCP in this session.
  • DBHub MCP configuration was written, but DBHub tools are still not listed in the current session.

After a hard stop, do not try to query the database in the same session. Do not try to use the DBHub CLI to pass SQL on the command line. DBHub CLI starts an MCP server; SQL must be executed through MCP tools after the agent session restarts and the tools are loaded.

Changing dbhub.toml or .env after DBHub MCP is already loaded is not a hard stop. The DBHub proxy reloads project configuration on the next dbhub_status, execute_sql, search_objects, or dbhub_custom_tool call.

Init Command

Use the Node init command when the user asks to install or initialize DBHub.

Trigger phrases include:

  • Claude Code: /dbhub init
  • Codex: $dbhub init
  • Natural language: "请安装并初始化", "安装并初始化 DBHub", "初始化数据库 AI 访问"

When triggered, run this skill's init script by absolute path while keeping the shell working directory at the user's target project root:

node <skill-dir>/scripts/init.mjs

Do not cd into the skill directory before running init. If the shell is already in a different directory, pass the project root explicitly with --project-dir <project-root>.

The init script installs DBHub MCP if missing, writes detected Codex/Claude MCP config, initializes the current project files if missing, and prints first-install restart instructions.

By default, init uses --client auto and only updates clients that already have config files or config directories. Use these explicit client selectors when the user asks for one client or when the client was just installed and has not created its config directory yet:

node <skill-dir>/scripts/init.mjs --client claude
node <skill-dir>/scripts/init.mjs --client codex
node <skill-dir>/scripts/init.mjs --client all

After running init, stop the current database task if MCP was installed or MCP configuration was written in this session. Tell the user to fill dbhub.toml and restart the current Codex/Claude session once so the MCP server is loaded. Later dbhub.toml and .env edits do not require another restart.

If the user explicitly asks only to install MCP, run:

node <skill-dir>/scripts/init.mjs --install-only

If the user explicitly asks only to initialize project files, run:

node <skill-dir>/scripts/init.mjs --project-only

First Use

When the user asks for database access:

  1. If DBHub MCP tools are available, use them.
  2. If DBHub MCP tools are unavailable, run node <skill-dir>/scripts/init.mjs from the user's target project root.

- The script installs MCP if missing and initializes the current project files if missing. - After init, stop if MCP was installed or configured. Tell the user to fill dbhub.toml with local credentials and restart the current Codex/Claude session once. - Do not continue the database request in the same session after init.

  1. If DBHub MCP is available but dbhub_status reports missing config, the current project likely has no dbhub.toml.

- Run node <skill-dir>/scripts/init.mjs --project-only from the user's target project root. - Tell the user to fill dbhub.toml with local credentials. - After the file exists, call dbhub_status or a DBHub tool again; do not restart only for this config change.

  1. If multiple first-level child directories contain dbhub.toml, ask the user to start the agent from the target project directory or set DBHUB_CONFIG.

- Do not guess which database to connect to.

Configuration

The MCP wrapper finds dbhub.toml in this order:

  1. DBHUB_CONFIG
  2. Current directory or parent directories
  3. Exactly one first-level child directory

It does not recursively scan deeper directories. If no config is found, the MCP proxy stays loaded and DBHub tools return a configuration error until dbhub.toml is created.

Company environment names:

  • fat means test.
  • pro means production.
  • Prefer source IDs such as mssql_fat, mssql_pro, order_fat, and order_pro.
  • Production source IDs containing a pro segment are treated as read-only by the DBHub proxy even if the TOML is misconfigured.

Query Workflow

  1. Start with DBHub schema exploration, not application code.
  2. If search_objects is available, use detail_level: "names" first, then summary, and use full only for the target object.
  3. If DBHub exposes only execute_sql, inspect MSSQL schema through sys.schemas, sys.tables, sys.columns, sys.types, sys.indexes, and sys.objects.
  4. Execute business SQL only after confirming the schema, table name, and relevant columns.
  5. If SQL fails because a table or column is missing, return to schema exploration; do not guess names.

Safety

  • Treat production sources as read-only even if a tool appears writable.
  • Never run DDL or DML on production sources.
  • For test or demo sources, run writes only when the user clearly asks for a change.
  • Prefer SELECT TOP N or equivalent limits for MSSQL queries.
  • Avoid SELECT * unless exploring a small demo table or the user asks for all columns.
  • Do not print credentials or connection strings.

Reporting

When answering, include the source used, the objects inspected, and a concise summary of the SQL result. If a result is truncated by DBHub max_rows, say so and refine the query before drawing conclusions.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Local Agent

87.32%
按下载量换算111

安全审计

暂无安全审计结果可展示。

权限和风险

执行命令

安装流程涉及命令执行,可能通过 第三方 CLI 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills