Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

omni-to-databricks-metric-view全方位到 databricks 指标视图

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

565

周安装

8

GitHub Stars

12

下载量

65
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:omni-to-databricks-metric-view(全方位到 databricks 指标视图)
来源仓库:https://github.com/exploreomni/omni-agent-skills
仓库路径:skills/omni-to-databricks-metric-view
安装命令:
npx skills add https://github.com/exploreomni/omni-agent-skills --skill omni-to-databricks-metric-view
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/exploreomni/omni-agent-skills --skill omni-to-databricks-metric-view

简介

omni-to-databricks-metric-view 用于辅助数据整理、表格处理和指标计算,适合清洗字段、汇总数据和生成统计说明。

  • 适用于 CSV/Excel 分析和图表准备的场景。
  • 使用时需确认数据来源、字段含义和时间范围,避免将样本当作全量事实。
  • 涉及敏感数据或导出文件时,应先确认权限和脱敏边界。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Omni → Databricks Metric View

Converts an Omni topic into a Databricks Metric View by exploring the Omni model via API, translating its field definitions into the Databricks Metric View embedded YAML format, and executing via the Databricks CLI.

See FIELD-MAPPING.md for full before/after translation examples and YAML-REFERENCE.md for the complete YAML structure, aggregate type, and format mapping tables.


Prerequisites

# Verify the Omni CLI is installed — if not, ask the user to install it
# See: https://github.com/exploreomni/cli#readme
command -v omni >/dev/null || echo "ERROR: Omni CLI is not installed."
# Show available profiles and select the appropriate one
omni config show
# If multiple profiles exist, ask the user which to use, then switch:
omni config use <profile-name>
# Databricks CLI — verify installed and check profiles
databricks --version
cat ~/.databrickscfg

Tip: Use -o json to force structured output for programmatic parsing, or -o human for readable tables. The default is auto (human in a TTY, JSON when piped).

Workflow

Step 1 — Gather Requirements

Ask the user:

  1. Which Omni topic do they want to convert? (e.g., orders)
  2. What is the Unity Catalog destination? (catalog.schema) (e.g., main.sales)
  3. What is the Databricks SQL Warehouse ID? (run databricks sql warehouses list to find it)
  4. Is this a new metric view or does one already exist at catalog.schema.[topic_name]_mv?
  5. Which Databricks CLI profile to use (optional — only if the user has multiple profiles)?
⚠️ STOP — Confirm all answers before proceeding. The metric view will be named [topic_name]_mv by default.

Step 2 — Explore the Omni Model

2a. Find the model ID

omni models list --modelkind SHARED

Identify the Shared Model and note its id. Always prefer the Shared Model over Schema or Workbook models.

2b. Fetch the topic file

omni models yaml-get <modelId> --filename <topic_name>.topic

From the topic file extract: base_view, joins, fields, always_filter, ai_context, sample_queries.

2c. Fetch the relationships file

omni models yaml-get <modelId> --filename relationships

2d. Fetch each view file referenced in the topic

For every view in base_view and joins:

omni models yaml-get <modelId> --filename <view_name>.view
If a view is prefixed with omni_dbt_, fetch the file starting with omni_dbt_. Skip any view backed by derived_table.sql — it has no physical table.

Step 3 — Identify Tables and Joins

Map view names to fully-qualified Databricks table references (catalog.schema.table):

Omni view nameDatabricks table
ecomm__order_itemscatalog.ecomm.order_items
omni_dbt_ecomm__order_itemscatalog.ecomm.order_items (strip omni_dbt_)

The __ separator maps to schema (left) and table (right). Confirm the catalog prefix with the user.

The joins indentation defines the join chain — a view indented beneath another joins into its parent:

joins:
  user_order_facts: {}          # skip — derived CTE
  ecomm__users: {}              # joins to base_view
  ecomm__inventory_items:       # joins to base_view
    ecomm__products:            # joins to inventory_items

Find the dimension with primary_key: true in each view — list it first among that table's dimensions.

STOP — Confirm the full table list and join hierarchy with the user before continuing.

Step 4 — Resolve the Field List

SyntaxMeaning
*(no fields parameter)*Include all fields from all views
all_views.* / view.*Include all fields from all views / named view
tag:<value>Include all fields with this tag
view.fieldInclude this specific field
-view.fieldExclude this field (always wins over wildcard inclusions)

Process inclusions first, then apply exclusions. Also remove any field with hidden: true unless explicitly included by name.


Step 5 — Build Join Definitions

Using the hierarchy from Step 3 and relationships.yaml, extract join columns from on_sql and build the on: clause. Use the view name as the join name.

Star schema (single-level):

joins:
  - name: ecomm__users
    source: catalog.ecomm.users
    'on': source.user_id = ecomm__users.id

Snowflake schema (multi-hop):

joins:
  - name: ecomm__inventory_items
    source: catalog.ecomm.inventory_items
    'on': source.inventory_item_id = ecomm__inventory_items.id
    joins:
      - name: ecomm__products
        source: catalog.ecomm.products
        'on': ecomm__inventory_items.product_id = ecomm__products.id
⚠️ on is a YAML 1.1 reserved word — always single-quote the key as 'on':. Columns from nested (2+ level) joins cannot be used in expr — flatten them through a denormalized direct join instead.

Step 6 — Map Dimensions and Measures

For each field that survived Step 4, translate it using the rules below. See FIELD-MAPPING.md for full examples.

Dimension quick reference:

Omni field typeDatabricks translation
Standard string/numberexpr: COLUMN
type: time (no timeframes)Single timestamp dimension
type: time + timeframesOne DATE_TRUNC(...) dimension per timeframe
groups:CASE WHEN... END expression
bin_boundaries:CASE WHEN range expression
duration:DATEDIFF(unit, start, end) expression
type: yesnoBOOLEAN dimension (not a filter; omit data_type)

Measure quick reference:

Omni measure typeDatabricks translation
aggregate_type: sum/avg/max/minSUM(col) / AVG(col) / etc.
aggregate_type: countCOUNT(*)
aggregate_type: count_distinctCOUNT(DISTINCT col)
Derived (refs other measures)MEASURE(measure_a) op MEASURE(measure_b) — define atomics first
filters: on a measureAGG(col) FILTER (WHERE condition)

Strip Omni's ${view.column} refs to bare column names (or join_name.column for joined fields). Use display_name for the Omni label, comment for description, and carry synonyms directly. See YAML-REFERENCE.md for format and aggregate type mapping tables.

If the topic has ai_context, carry it into the metric view's top-level comment.

STOP — Review all dimensions, measures, and join definitions with the user before generating the final output.

Step 7 — Check for Existing Metric View

databricks api post /api/2.0/sql/statements \
  --json "{\"warehouse_id\": \"<WAREHOUSE_ID>\", \"statement\": \"SHOW VIEWS IN <catalog>.<schema> LIKE '%_mv'\", \"wait_timeout\": \"30s\", \"catalog\": \"<CATALOG>\", \"schema\": \"<SCHEMA>\"}"
  • View does not exist → use CREATE OR REPLACE VIEW... WITH METRICS
  • View already exists → use ALTER VIEW... AS $$... $$

Step 8 — Generate and Execute the SQL

Write the SQL to a temp file:

-- CREATE (new view)
CREATE OR REPLACE VIEW catalog.schema.orders_mv
WITH METRICS
LANGUAGE YAML
AS $$
version: 1.1
comment: "..."
source: catalog.ecomm.order_items

joins:
  - name: ecomm__users
    source: catalog.ecomm.users
    'on': source.user_id = ecomm__users.id

dimensions:
  - name: id
    expr: id
    display_name: "Order ID"

  - name: status
    expr: status
    display_name: "Order Status"

measures:
  - name: order_count
    expr: COUNT(*)
    display_name: "Order Count"

  - name: total_sale_price
    expr: SUM(sale_price)
    display_name: "Total Sale Price"
    format:
      type: currency
      currency_code: USD
$$
-- ALTER (existing view)
ALTER VIEW catalog.schema.orders_mv AS $$
version: 1.1
...
$$

Execute via the SQL Statements API (databricks sql execute does not exist in CLI v0.295.0+):

databricks api post /api/2.0/sql/statements \
  --json "{
    \"warehouse_id\": \"<WAREHOUSE_ID>\",
    \"statement\": $(cat /tmp/orders_mv.sql | python3 -c 'import json,sys; print(json.dumps(sys.stdin.read()))'),
    \"wait_timeout\": \"50s\",
    \"catalog\": \"<CATALOG>\",
    \"schema\": \"<SCHEMA>\"
  }"

Check the response for "state": "SUCCEEDED". If "state": "FAILED", read status.error.message and see the Troubleshooting section below.

STOP — Confirm which group or user should receive access before running the GRANT. This is a permission change visible to others.

Grant access:

databricks api post /api/2.0/sql/statements \
  --json "{\"warehouse_id\": \"<WAREHOUSE_ID>\", \"statement\": \"GRANT SELECT ON VIEW catalog.schema.orders_mv TO \`group_name\`\", \"wait_timeout\": \"30s\", \"catalog\": \"<CATALOG>\", \"schema\": \"<SCHEMA>\"}"

Troubleshooting

When the SQL Statements API returns "state": "FAILED", read status.error.message:

Error message containsLikely causeFix
METRIC_VIEW_INVALID_VIEW_DEFINITIONInvalid YAML field or valueCheck the field name against the valid keys (name, expr, display_name, comment, synonyms, format). Common mistakes: using description instead of comment, unsupported decimal_places.
warehouse not running / RESOURCE_DOES_NOT_EXISTWarehouse is stopped or wrong IDStart the warehouse in the Databricks UI or verify the ID with databricks api get /api/2.0/sql/warehouses.
PERMISSION_DENIEDThe CLI profile lacks privilegesCheck the profile's permissions on the catalog/schema with databricks api get /api/2.0/unity-catalog/permissions/....
TABLE_OR_VIEW_NOT_FOUNDA source or join table doesn't exist in Unity CatalogVerify each table reference with SHOW TABLES IN <catalog>.<schema>.
on parse error / unexpected keyon: not quotedAlways write 'on': (single-quoted) — it is a YAML 1.1 reserved word.
wait_timeout value errorTimeout out of rangewait_timeout must be between 5s and 50s.

If the error message is truncated, run the same statement with "wait_timeout": "5s" to get the full synchronous error response.


Critical Rules

  1. Naming: Name the metric view [topic_name]_mv (snake_case, lowercase)
  2. CREATE vs ALTER: Check for existence first — CREATE OR REPLACE for new, ALTER VIEW for existing
  3. Version: Always use version: 1.1 (requires Databricks Runtime 17.2+)
  4. Skip derived CTEs: Views with derived_table.sql have no physical table — skip and warn the user
  5. Confirm before executing: Show the full generated SQL to the user before running
  6. Boolean fields: Map type: yesno as BOOLEAN dimensions — not filters. data_type is not a valid field — omit it
  7. Composed measures: Use MEASURE() syntax; define atomic measures before composed ones
  8. YAML quoting: on is a YAML 1.1 reserved word — always write 'on': (single-quoted)
  9. No SELECT *: All fields must be explicitly defined
  10. MAP columns: Skip joins to tables containing MAP type columns — not supported
  11. Nested join refs: Only direct star join columns (1 level) can be used in expr. Flatten snowflake schema joins through a denormalized direct join
  12. Warehouse ID required: Always confirm before execution — cannot be inferred
  13. Exclusions win: -view.field always overrides any wildcard inclusion
  14. Format type values are lowercase: number, currency, date, date_time, percentage, byte
  15. Date format required: type: date and type: date_time both require date_format
  16. Currency format: Use currency_code: USD not iso_code: USD
  17. decimal_places unsupported: Omit it entirely — causes a parse error
  18. CLI execution: Use databricks api post /api/2.0/sql/statements; wait_timeout must be 5s50s
  19. Omni CLI flag: Use --filename (not --file-name)
  20. Field description key: Use comment: not description:description is not a recognized field and causes a parse error

Reference

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.56%
按下载量换算24

Claude

30.55%
按下载量换算20

Cursor

16.16%
按下载量换算11

Gemini CLI

9.1%
按下载量换算6

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills