Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

dt-app-notebooksdt 应用笔记本

Agent Skill

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

总安装

6,162

周安装

262

GitHub Stars

59

下载量

2,159
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

dt-app-notebooks 提供交互式数据分析笔记本创建和管理功能。

  • 适用于调查分析、数据探索和运维文档记录等研究场景。
  • 支持模块化章节、DQL 查询执行和 Markdown 文档混合编写。
  • 使用前需确认时间范围和查询权限,注意缓存结果的有效期管理。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Dynatrace Notebook Skill

Overview

Dynatrace notebooks are JSON documents stored in the Document Store for interactive data analysis, investigation, and documentation. Each notebook contains:

  • Sections: Modular blocks organizing markdown and query content
  • DQL Queries: Executable queries with cached results and visualizations
  • Markdown: Documentation, context, and narrative content
  • Timeframes: Default and section-specific time ranges
  • Metadata: Ownership, versioning, and modification tracking

When to use this skill:

  • Creating investigation notebooks or analysis templates
  • Modifying existing notebooks (queries, sections, visualizations, markdown)
  • Querying notebook JSON to extract DQL queries or analyze structure
  • Analyzing notebook purpose, investigation workflow, and data coverage
  • Building collaborative documentation with embedded analytics

Four main workflows:

  1. Creating - Build notebooks from scratch for investigations, documentation, or query libraries
  2. Modifying - Update sections, queries, visualizations, markdown, or timeframes
  3. Querying - Extract data from notebook JSON or search Document Store
  4. Analyzing - Understand structure, purpose, investigation workflow, and content gaps

Notebook Document Structure

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

{
  "id": "notebook-abc123",
  "name": "Production Investigation",
  "type": "notebook",
  "owner": "user-uuid",
  "isPrivate": false,
  "version": 42,
  "modificationInfo": {...},
  "content": {
    "version": "7",
    "defaultTimeframe": {
      "from": "now()-2h",
      "to": "now()"
    },
    "sections": [...]
  }
}

Metadata (top-level):

  • .id - Document ID (UUID or semantic like "dynatrace.notebooks.getting-started")
  • .name - Notebook display name
  • .type - Always "notebook"
  • .owner - Owner UUID
  • .isPrivate - Visibility (true = private, false = shared)
  • .version - Document version (incremental, auto-managed)
  • .modificationInfo - Creation/modification timestamps

Notebook content (.content):

  • .content.version - Content schema version (currently "7")
  • .content.defaultTimeframe - Default time range for all DQL sections
  • .content.defaultSegments - Default filter segments (usually empty)
  • .content.sections - Array of markdown and DQL query sections

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 Notebooks

For detailed workflows and mandatory requirements:

  • Creating & Updating notebooks → Load references/create-update.md for complete workflow, test-first approach, DQL query validation, and modification patterns
  • Analyzing notebooks → Load references/analyzing.md for structure analysis, JSON extraction, and query execution

⚠️ MANDATORY for creation/modification:

  1. Always load the relevant reference file first
  2. Load relevant skills for query generation (MANDATORY - do not invent queries)
  3. Test and validate all DQL queries before adding to notebook (see create-update.md)
  4. Validate notebook JSON against schema before save/upload (see Schema Validation below)

Notebook Structure

Root Properties

Required properties:

{
  "version": "7",              // Content schema version (current: "7")
  "sections": []               // Array of markdown and DQL sections
}

Optional properties:

  • defaultTimeframe - Default time range for all DQL sections
  • defaultSegments - Default filter segments (usually empty)

Structure concept: Sections are ordered array (display order = array order). Each section has unique UUID. Section types: markdown (documentation) and dql (queries with visualizations).

Sections Overview

📝 For detailed section specifications, visualization settings, and configuration options, load references/sections.md

Markdown sections: {"type": "markdown", "markdown": "# Content"} DQL sections: {"type": "dql", "state": {"input": {"value": "query"}, "visualization": "table"}}

Visualizations: table, lineChart, barChart, pieChart, singleValue, areaChart

See references/sections.md for complete specifications


Schema Validation

⚠️ MANDATORY for create/update workflows: Always validate notebook JSON before save/upload. → Load references/create-update.md for validation commands, query validation, error interpretation, and test workflow.

Schema location: notebook-schema.json (Notebook content schema v7)


References

Reference FileWhen to Use
create-update.mdCreating and updating notebooks - workflows, test-first approach, DQL query validation, patterns
analyzing.mdExtract information from notebooks, understand structure and content, query execution
sections.mdSection types, visualization settings, configuration reference

Common Patterns & Best Practices

Notebook types:

  • Investigation: Markdown context → DQL queries → Analysis → Findings
  • Documentation: Narrative with embedded queries demonstrating concepts
  • Query Library: Collection of reusable DQL patterns with explanations

Key rules:

  • Use unique UUIDs for section IDs · Start with markdown context · Set content version="7" · Use relative timeframes (now()-2h) · Omit result objects when creating sections · Order sections logically · Add markdown between query sections for context

Timeframe strategies:

  • Default timeframe: Sets baseline for all DQL sections
  • Section-specific: Override default for specific queries (e.g., longer lookback for trends)
  • Relative: now()-2h, now()-7d for dynamic ranges
  • Absolute: ISO timestamps for historical analysis

Related Skills

  • dt-dql-essentials - DQL query syntax, functions, and optimization
  • dt-app-dashboards - Dashboard creation for operational monitoring (vs notebooks for investigation)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.63%
按下载量换算812

Claude

27.2%
按下载量换算587

Cursor

20.31%
按下载量换算438

Gemini CLI

9.23%
按下载量换算199

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills