fabric-realtime-dashboard

fabric-realtime-dashboard is a skill for Claude Code from wardawgmalvicious/agent-config. It costs 234 tokens per session (1,988 once invoked), scanned A, original, MIT.

A guide for creating and editing Microsoft Fabric Real-Time Dashboard definitions in JSON. These dashboards display KQL, Microsoft's query language for event and log data, and connect queries, data sources, variables, tiles, and pages through IDs.

In plain words
What is it for?
Use it to hand-edit or maintain Real-Time Dashboard JSON in Git, connect tiles to queries, define variables and data sources, and troubleshoot dashboard loading.
Why use it?
It helps avoid dashboards that contain valid JSON but still fail when Fabric loads them because the internal references are not wired correctly. It explains the required file structure and validation rules.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter. Also seen: positional $N argument.

Good fit Use it to hand-edit or maintain Real-Time Dashboard JSON in Git, connect tiles to queries, define variables and data sources, and troubleshoot dashboard loading.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/wardawgmalvicious/agent-config/fabric-realtime-dashboard
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add wardawgmalvicious/agent-config --skill fabric-realtime-dashboard
Clone the repo
git clone --depth 1 https://github.com/wardawgmalvicious/agent-config

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for fabric-realtime-dashboard

README.md
[![agentmods](https://agentmods.dev/badge/skills/wardawgmalvicious/agent-config/fabric-realtime-dashboard/github.svg)](https://agentmods.dev/skills/wardawgmalvicious/agent-config/fabric-realtime-dashboard)
Your own site
<a href="https://agentmods.dev/skills/wardawgmalvicious/agent-config/fabric-realtime-dashboard"><img src="https://agentmods.dev/badge/skills/wardawgmalvicious/agent-config/fabric-realtime-dashboard/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for fabric-realtime-dashboard

Your own site · 80×15
<a href="https://agentmods.dev/skills/wardawgmalvicious/agent-config/fabric-realtime-dashboard"><img src="https://agentmods.dev/badge/skills/wardawgmalvicious/agent-config/fabric-realtime-dashboard.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 234 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,988 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00234 $0.01988
Opus 5 $0.00117 $0.00994
Sonnet 5 $0.00047 $0.00398
Haiku 4.5 $0.00023 $0.00199

Measured yesterday against content hash d11fb90d2844, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

fabric-realtime-dashboard scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/fabric/fabric-realtime-dashboard/SKILL.md · 130 lines

How it starts

The opening of the file, as written. The whole thing — 130 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Fabric Real-Time Dashboard (KQLDashboard)

Hand-authoring and Git-editing the RealTimeDashboard.json definition. The portal load endpoint validates beyond JSON Schema conformance — most of what breaks a hand-authored dashboard is in the wiring rules below, not the syntax. Facts verified against a live dashboard (schema_version 81, Aug 2026) and Real-time dashboard - Git integration.

File anatomy

Item folder: <Name>.KQLDashboard/ with .platform + RealTimeDashboard.json (portal may name it RealTimeDashboard-N.json). Top-level keys: schema_version, flavor ("RTDashboard_Regular"), autoRefresh, tiles, baseQueries, parameters, dataSources, pages, queries, embeddedApps (+ portal-managed $schema/id/eTag/title, which a Git-created shell may omit — leave them however the portal wrote them).

All KQL text lives in queries[]; everything else points at it:

  • queries[]{id, dataSource: {kind: "inline", dataSourceId}, text, usedVariables}
  • tiles[]{id, queryRef: {kind: "query", queryId} | {kind: "baseQuery", baseQueryId}, title, visualType, pageId, layout, visualOptions}
  • baseQueries[]{id, variableName, queryId}; the text is the referenced query object. Variable names must start with _. A tile query that uses one references the variable in its KQL text and lists it in usedVariables. Base queries must each be a single tabular expression (they are wrapped as let _name = (<text>);) — no scalar lambdas, no internal let statements.
  • parameters[]kind: "duration" exposes two variables via beginVariableName / endVariableName (commonly _startTime / _endTime).
  • dataSources[]kind: "kusto-trident" with databaseArtifactId (the KQLDatabase item id) for Fabric-native sources.

Load-time validation rules

  • Every queryId referenced exactly once, counted across tiles[].queryRef.queryId, baseQueries[].queryId, and parameters[].dataSource.queryRef.queryId. Duplicating a tile means duplicating its query with a fresh id too.
  • Every id is an RFC-4122 UUID, unique within its category. Readable pseudo-ids are rejected. For deterministic scripted edits use uuid.uuid5(namespace, label).
  • Misleading error: /tiles/N/queryRef ... must have required property 'baseQueryId' almost always means a malformed queryRef.queryId — the schema's oneOf fails the query branch and reports the baseQuery branch's complaints instead. Fix the UUID and the cascade clears.
  • Identity preservation: never change existing ids (top-level, tile, page, query, dataSource, parameter), pageId, queryRef.queryId, dataSource.dataSourceId, parameter variableNames, or .platform logicalId. A changed identifier is treated as delete + recreate on the next Update from Git, losing pinned references and share targets.

Read the full file on GitHub · 130 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday Changed d11fb90d2844
  2. 7d ago Changed · +3 lines e1393534169c
  3. 11d ago First seen · 127 lines · 234 tokens per session scan A 6cecce5ade3e

Subscribe to this mod's changes

fabric-realtime-dashboard is a skill published in the GitHub repository wardawgmalvicious/agent-config (0 stars, last pushed today), licensed MIT. It adds 234 tokens to every session and 1,988 once invoked, about $0.0012 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

drawio

WORKFLOW SKILL — Generate Azure architecture diagrams in .drawio via simonkurtz-MSFT MCP server (full Azure icon set, batch creation, transactional mode). Covers architecture, dependency, runtime-flow, and as-built diagrams. WHEN: 'draw.io diagram', 'Azure architecture diagram', 'as-built diagram', 'runtime flow…

jonathan-vella/apex-accelerator · 99 tokens

azure-artifacts

UTILITY SKILL — Artifact template structures, H2 compliance rules, and documentation styling for agent outputs (Steps 1-7). WHEN: "generate artifact", "check H2 structure", "artifact template", "step 7 as-built". USE FOR: generating any agent artifact, checking H2 structure compliance. DO NOT USE FOR: Azure resource…

jonathan-vella/apex-accelerator · 103 tokens

azure-bicep-patterns

UTILITY SKILL — Reusable Azure Bicep patterns: hub-spoke, private endpoints, diagnostics, AVM composition. WHEN: "hub-spoke Bicep", "private endpoint module", "diagnostic settings", "AVM Bicep composition". USE FOR: Bicep template design, hub-spoke networking, private endpoint patterns, AVM modules. DO NOT USE FOR…

jonathan-vella/apex-accelerator · 114 tokens

azure-governance-discovery

ANALYSIS SKILL — Azure Policy discovery: effective assignments (incl. MG-inherited), definitions/exemptions, effect classification, emits governance-constraints JSON. WHEN: 'Azure policy discovery', 'effective policy assignments', 'governance constraints', '04g-Governance Phase 1', 'refresh governance JSON'. DO NOT…

jonathan-vella/apex-accelerator · 86 tokens

vendor-prompting

ANALYSIS SKILL — Audit-grade reference for Anthropic Claude and OpenAI GPT-5.6 prompting best practices. WHEN: "claude prompting", "gpt-5.6 prompting", "audit agent", "review prompt", "vendor best practices", "anthropic best practices", "openai prompting". DO NOT USE FOR: routine prompt edits where rules are already…

jonathan-vella/apex-accelerator · 94 tokens

copilot-customization

Authoritative reference for VS Code Copilot customization mechanisms: instructions, prompt files, custom agents, agent skills, MCP servers, hooks, and plugins. Use when deciding which customization type to use, creating new .instructions.md/.prompt.md/.agent.md/SKILL.md/mcp.json files from scratch, or debugging why a…

jonathan-vella/apex-accelerator · 90 tokens