Power-bi-agentic-development dax

DAX performance optimization for semantic models. Automatically invoke when the user asks to "optimize DAX", "fix slow DAX", "DAX performance", "tune a measure", "debug a measure", "DAX anti-patterns", or mentions slow queries, server timings, or DAX authoring.

install
source · Clone the upstream repo
git clone https://github.com/data-goblin/power-bi-agentic-development
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/data-goblin/power-bi-agentic-development "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/semantic-models/skills/dax" ~/.claude/skills/data-goblin-power-bi-agentic-development-dax && rm -rf "$T"
manifest: plugins/semantic-models/skills/dax/SKILL.md
source content

DAX

Skills and references for writing, debugging, and optimizing DAX in semantic models.

Optimization

For systematic DAX query performance optimization, read the workflow reference first:

references/dax-performance-optimization.md
— Tiered framework (4 tiers), phased workflow, decision guide, and error handling.

Detailed reference files (progressive disclosure — consult as directed by the workflow):

Trace capture and performance profiling:

  • Local models (Power BI Desktop): Use the
    connect-pbid
    skill
    — specifically
    performance-profiling.md
    for FE/SE timing and
    evaluateandlog-debugging.md
    for intermediate result inspection.
  • Remote models (Fabric Service / XMLA): Use the
    powerbi-modeling-mcp
    VS Code extension for trace and query operations. Install:
    code --install-extension analysis-services.powerbi-modeling-mcp

Related Skills