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

dt-app-dashboardsdt 应用程序仪表板

Agent Skill

dt-app-dashboards 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,789

周安装

272

GitHub Stars

59

下载量

2,198
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:dt-app-dashboards(dt 应用程序仪表板)
来源仓库:https://github.com/dynatrace/dynatrace-for-ai
仓库路径:skills/dt-app-dashboards
安装命令:
npx skills add https://github.com/dynatrace/dynatrace-for-ai --skill dt-app-dashboards
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/dynatrace/dynatrace-for-ai --skill dt-app-dashboards

简介

dt-app-dashboards 用于创建和管理 Dynatrace 应用程序仪表板。

  • 适用于监控数据可视化、指标展示和运维状态汇总等观测场景。
  • 支持网格布局、动态变量和 JSON 配置,可与 DQL 查询结果集成。
  • 操作前应备份现有仪表板,注意变量命名冲突和布局兼容性问题。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Dynatrace Dashboard Skill

Overview

Dynatrace dashboards are JSON documents stored in the Document Store. Each dashboard contains:

  • Tiles: Visual components displaying markdown content or data visualizations
  • Layouts: Grid-based positioning (20-unit width) defining tile placement
  • Variables: Dynamic parameters ($VariableName) for query filtering
  • Configuration: Version metadata and dashboard-level settings

When to use this skill:

  • Creating new dashboards with skill-based query generation
  • Modifying existing dashboards (queries, tiles, layouts)
  • Querying dashboard JSON to extract data or analyze structure
  • Analyzing dashboard purpose, metrics coverage, and health

Four main workflows:

  1. Creating - Build dashboards with skill-based queries
  2. Modifying - Update tiles, queries, layouts, variables
  3. Querying - Extract data from dashboard JSON
  4. Analyzing - Understand structure, purpose, gaps, and health

Dashboard Document Structure

Dashboards in the Dynatrace Document Store include both metadata and content:

{
  "id": "dashboard-abc123",
  "name": "My Dashboard",
  "type": "dashboard",
  "owner": "user-uuid",
  "version": 60,
  "modificationInfo": {...},
  "content": {
    "version": 21,
    "variables": [],
    "tiles": {...},
    "layouts": {...}
  }
}

Metadata (top-level):

  • .id - Document ID
  • .name - Dashboard name
  • .owner - Owner UUID
  • .version - Document version (change tracking)
  • .modificationInfo - Creation/modification timestamps

Dashboard content (.content):

  • .content.version - Dashboard schema version (current: 21)
  • .content.tiles - Tile definitions
  • .content.layouts - Tile positioning
  • .content.variables - Dashboard variables

All jq examples in this skill use the .content.* paths.


When to Load References

This skill uses progressive disclosure - load only what you need:

  • Start here: SKILL.md provides core concepts and quick-start examples
  • Load references on-demand: Each reference file covers a specific deep-dive topic
  • Context efficiency: Progressive loading enables task completion without external documentation

Loading strategy:

  1. Try answering with just SKILL.md first
  2. If you need detailed specifications or advanced patterns, load the relevant reference file
  3. The "References" section below maps each file to its use case
💡 Tip: Reference files are linked throughout this document with arrows pointing to when you should load them.

Working with Dashboards

For detailed workflows and mandatory requirements:

  • Creating & Updating dashboards → Load references/create-update.md for complete workflow, skill-based query generation, validation, and modification patterns
  • Analyzing dashboards → Load references/analyzing.md for structure analysis, health assessment, and JSON extraction

⚠️ MANDATORY for creation/modification:

Follow this exact order (do not reorder):

  1. Define purpose and load required skills, references and assets
  2. Explore available data fields/metrics
  3. Plan dashboard structure: logic, variables, tiles and layout
  4. Design and validate all variable/tile DQL with dtctl query "<DQL>" --plain
  5. Construct/update dashboard JSON
  6. Validate the dashboard JSON structure and queries
  7. Deploy the dashboard via the Dynatrace API

Full requirements and examples: references/create-update.md.


Dashboard Structure

Required Structure

{
  "name": "My Dashboard",
  "type": "dashboard",
  "content": {
    "version": 21,
    "tiles": {},
    "layouts": {}
  }
}

Optional properties inside content:

  • variables - Array of dashboard variables (filters/parameters)
  • settings - Dashboard-level settings (grid layout, default timeframe)
  • refreshRate - Dashboard refresh rate in milliseconds (e.g., 60000)
  • gridColumnsCount - Number of grid columns (default: 20)
  • annotations - Array of dashboard annotations

Structure concept: Variables define reusable parameters, tiles contain content/visualizations, layouts control positioning. Each tile ID in tiles must have a corresponding entry in layouts.

Tiles Overview

📊 For detailed tile specifications, visualization settings, and query configuration, load references/tiles.md

Markdown tiles: {"type": "markdown", "content": "# Title"} Data tiles: {"type": "data", "title": "...", "query": "...", "visualization": "..."}

Visualizations:

  • Time-series (MUST have time dimension via timeseries/makeTimeseries): lineChart, areaChart, barChart, bandChart
  • Categorical (no time dimension, summarize... by:{field}): categoricalBarChart, pieChart, donutChart
  • Single value / gauge (single numeric record): singleValue, meterBar, gauge
  • Tabular / raw (any data shape): table, raw, recordList
  • Distribution / status: histogram, honeycomb
  • Geographic maps: choroplethMap, dotMap, connectionMap, bubbleMap
  • Matrix / correlation: heatmap, scatterplot

See references/tiles.md for specifications

Layouts Overview

📐 For complex layout patterns, grid system details, and positioning examples, load references/layouts.md

Grid: 20 units wide. Common widths: Full (20), Half (10), Third (6-7), Quarter (5) Properties: x (0-19), y (0+), w (1-20), h (1-20)

Example: {"1": {"x": 0, "y": 0, "w": 20, "h": 1}, "2": {"x": 0, "y": 1, "w": 10, "h": 8}}

See references/layouts.md for patterns

Variables Overview

🔧 For detailed variable configurations, replacement strategies, multi-select, and limitations, load references/variables.md

Definition: {"version": 2, "key": "ServiceFilter", "type": "query", "visible": true, "editable": true, "input": "smartscapeNodes SERVICE | fields name", "multiple": false, "defaultValue": "*"} Usage (single-select): fetch logs | filter service.name == $ServiceFilter Usage (multi-select): fetch logs | filter in(service.name, array($ServiceFilter))

See references/variables.md for complete property reference, replacement strategies (:noquote, :backtick), and usage patterns


Validation

⚠️ MANDATORY for create/update workflows: Validate the dashboard JSON before deploying. Check:

  • Schema structure — required top-level keys (name, type, content) and content keys (version, variables, tiles, layouts)
  • Variable resolution — all variable queries execute successfully
  • Tile query execution — all tile DQL queries run without errors
  • Best-practice checks — warnings for hardcoded time filters, CSV variables, etc.

→ Load references/create-update.md for full validation workflow.


References

Reference FileWhen to Use
create-update.mdCreating and updating dashboards - workflows, skill-based queries, validation, patterns
tiles.mdTile types, visualization settings, query configuration, thresholds
layouts.mdGrid system details, layout patterns, positioning examples
variables.mdVariable types, multi-select, default values, query integration
analyzing.mdStructure analysis, purpose identification, health assessment, JSON extraction

Common Patterns & Best Practices

Patterns: Executive (header + KPIs + trends) · Service Health (RED metrics) · Infrastructure (resource metrics + tables)

Key rules: Match tile IDs in tiles and layouts · Use descriptive variable IDs · Start with full-width headers (y=0) · Optimize queries with limit/summarize · Set version=21 · No time-range filters in queries unless explicitly requested by the user

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.14%
按下载量换算706

Claude

31.87%
按下载量换算701

Cursor

19.19%
按下载量换算422

Gemini CLI

9.49%
按下载量换算209

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills