Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计提醒

metabase-database-metadata元数据库 数据库元数据

Agent Skill

用于辅助数据库表结构、查询语句、迁移脚本和数据维护任务。它适合让 Agent 分析 schema、编写 SQL、排查查询问题、整理索引或生成迁移建议。使用时需要明确数据库类型、连接环境和目标表,区分只读分析与写入变更;涉及删除、更新、迁移和批量导入时,应优先 dry-run、备份或事务保护,避免误操作。

总安装

1,022

周安装

43

GitHub Stars

12

下载量

358
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/metabase/agent-skills --skill metabase-database-metadata

简介

用于辅助数据库表结构、查询语句和迁移脚本的维护,帮助 Agent 分析 schema 或排查问题。

  • 适合处理 SQL 编写、索引整理和数据库连接配置等任务。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 需明确数据库类型和连接环境,区分只读与写入操作;涉及变更时应优先备份或事务保护。
  • 建议结合项目实际 schema 和运行环境使用。

SKILL.md

Metabase Database Metadata Format

Metabase represents database metadata — synced databases, their tables, and their fields — as a tree of YAML files. Files are diff-friendly: numeric IDs are omitted entirely, and foreign keys use natural-key tuples like ["Sample Database", "PUBLIC", "ORDERS"] instead of database identifiers.

The format is defined by a specification bundled alongside this file as spec.md (upstream source: metabase/database-metadata). The same project ships a CLI (@metabase/database-metadata on npm) that converts the raw JSON from GET /api/database/metadata into the YAML tree described by the spec.

Canonical layout

All metadata for a project lives under a top-level .metabase/ directory:

  • .metabase/databases/ — the YAML tree. This is the canonical source for the agent. Read these files to understand the schema, columns, types, and FK relationships.
  • .metabase/metadata.json — the raw API response. Potentially multi-megabyte (or multi-gigabyte) JSON with flat databases / tables / fields arrays. Never open, grep, or pass it to tools. It exists only as input to the extractor.

The .metabase/ directory and the .env file described below should both be gitignored. On large warehouses the extracted metadata can reach gigabytes — committing it would make the repo painful or unusable.

First-time setup

Do not run any of the steps below proactively at session start. Only run them when the user explicitly asks to fetch metadata, set up the workflow, or requests something that plainly requires knowledge of the database schema (e.g. "write a query against ORDERS", "describe what tables exist").

When setup is triggered:

1. Ensure a .env file with credentials

Check whether .env exists at the repo root and contains both METABASE_URL and METABASE_API_KEY.

  • If .env is missing:

- If .env.template exists, ask the user to copy it and fill in the values. - If neither exists, create .env.template with placeholders and ask the user to create .env from it: METABASE_URL=https://metabase.example.com METABASE_API_KEY=

  • If .env exists but is missing one of the required variables, ask the user to add it.

Do not invent, guess, or hardcode credentials. Always ask.

2. Ensure .env and .metabase/ are gitignored

Read the repo's .gitignore and confirm both .env and .metabase/ are listed. If either is missing, ask the user before modifying .gitignore — e.g.:

.env and .metabase/ are not in .gitignore. Committing them would leak credentials or bloat the repo (metadata can be gigabytes). Shall I add them?

Only edit .gitignore after the user confirms.

3. Fetch and extract

Once .env is valid and ignore rules are in place:

set -a; source .env; set +a

mkdir -p .metabase
curl -sf "$METABASE_URL/api/database/metadata" \
  -H "X-API-Key: $METABASE_API_KEY" \
  -o .metabase/metadata.json

rm -rf .metabase/databases
npx @metabase/database-metadata extract-metadata .metabase/metadata.json .metabase/databases

Then read the YAML tree under .metabase/databases/ to answer the user's question.

Session start behaviour

At the start of a session, do not run any fetch commands. Just observe what's on disk:

  • If .metabase/metadata.json and .metabase/databases/ both exist, assume the tree is sufficiently up to date and use it directly. Do not refetch.
  • If the tree is missing or only partial, do nothing until the user asks for something that needs it — then fall into the first-time-setup flow above.

If something in the tree looks stale or inconsistent while you're using it, mention it to the user and let them decide whether to refetch. Never refresh silently.

Refreshing (user-initiated only)

If the user explicitly asks to refresh metadata, re-run step 3 from first-time setup. Always remove .metabase/databases before re-extracting so stale files are not left behind.

Entities

Three entity types, two file types:

EntityFileDescription
Database.metabase/databases/{db}/{db}.yamlA connected data source (Postgres, MySQL, BigQuery, etc.). Identified by name.
Table.metabase/databases/{db}/schemas/{schema}/tables/{table}.yaml (or .../tables/{table}.yaml for schemaless DBs)A physical table or view. Contains a fields array with all its columns nested inline.
Field(nested inside a Table YAML, no separate file)A column. Includes base_type, database_type, and optionally effective_type, semantic_type, coercion_strategy, parent_id, fk_target_field_id.

Foreign keys

Foreign keys use natural-key tuples, not numeric IDs:

  • Database FK: the database name (string) — e.g. "Sample Database"
  • Table FK: [database, schema_or_null, table] — e.g. ["Sample Database", "PUBLIC", "ORDERS"]
  • Field FK: [database, schema_or_null, table, field,...nested_field_names] — e.g. ["Sample Database", "PUBLIC", "EVENTS", "DATA", "user", "name"] for a JSON-unfolded column DATA.user.name

Field-level FKs show up as parent_id (nested field parent) and fk_target_field_id (referenced PK for FK columns).

Type attributes on fields

  • database_type — the raw native type string from the driver (BIGINT, VARCHAR, JSONB, etc.). Database-specific.
  • base_type — the Metabase type matching the native type (type/BigInteger, type/Text, type/Structured, etc.).
  • effective_type — the type Metabase treats the column as at query time. Only emitted when it differs from base_type (i.e. coercion is configured).
  • coercion_strategy — the rule producing effective_type from base_type (e.g. Coercion/ISO8601->DateTime, Coercion/UNIXMilliSeconds->DateTime).
  • semantic_type — business-domain label (type/PK, type/FK, type/Email, type/Category, type/Latitude, etc.). Drives UI and some analytical behavior.

See the extracted spec for the full type hierarchy and available coercion strategies.

Reading the spec

This skill ships with a local snapshot of the spec as spec.md, alongside SKILL.md.

Read it on demand, not eagerly. Open spec.md only when you actually need detail beyond what SKILL.md summarizes — e.g. the full base-type / semantic-type hierarchy, the complete list of coercion strategies, or the exact folder-path rules. Do not open it at session start, and do not open it for tasks unrelated to the metadata tree.

If the bundled copy looks out of date with the upstream package, the skill's own README.md documents how to refresh it with extract-spec.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

展示第三方安全扫描或审计结果

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

平台分布

Codex

36.92%
按下载量换算132

Claude

31.17%
按下载量换算112

Cursor

16.52%
按下载量换算59

Gemini CLI

9.42%
按下载量换算34

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills