powerbi-project-workflows

powerbi-project-workflows is a skill for Claude Code, Codex from HorizunGroup/horizun-pbi-mcp. It costs 80 tokens per session (873 once invoked), scanned A, original, Apache-2.0.

A workflow skill for working with local Power BI Desktop models and PBIP projects, which are file-based Power BI report projects.

In plain words
What is it for?
Use it for Power BI model and report audits, DAX and TMDL work, report-page edits, PBIR visual layout, PBIX conversion, and delivery checks.
Why use it?
It provides a defined process for choosing the correct model or project, auditing it, making changes, and validating the result.

Skill for Claude CodeCodex

Written for Claude Code and Codex: shipped in a Claude Code plugin, but also agents/openai.yaml present.

Part of the horizun-pbi-mcp plugin — 2 skills, 1 MCP server shipped together

Good fit Use it for Power BI model and report audits, DAX and TMDL work, report-page edits, PBIR visual layout, PBIX conversion, and delivery checks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/horizungroup/horizun-pbi-mcp/powerbi-project-workflows
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 HorizunGroup/horizun-pbi-mcp --skill powerbi-project-workflows
Clone the repo
git clone --depth 1 https://github.com/HorizunGroup/horizun-pbi-mcp

Made for: Claude Code, Codex.

Or install horizun-pbi-mcp, the plugin that ships this one along with the rest of its 2 skills, 1 MCP server.

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 powerbi-project-workflows

README.md
[![agentmods](https://agentmods.dev/badge/skills/horizungroup/horizun-pbi-mcp/powerbi-project-workflows/github.svg)](https://agentmods.dev/skills/horizungroup/horizun-pbi-mcp/powerbi-project-workflows)
Your own site
<a href="https://agentmods.dev/skills/horizungroup/horizun-pbi-mcp/powerbi-project-workflows"><img src="https://agentmods.dev/badge/skills/horizungroup/horizun-pbi-mcp/powerbi-project-workflows/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 powerbi-project-workflows

Your own site · 80×15
<a href="https://agentmods.dev/skills/horizungroup/horizun-pbi-mcp/powerbi-project-workflows"><img src="https://agentmods.dev/badge/skills/horizungroup/horizun-pbi-mcp/powerbi-project-workflows.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 80 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 873 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.00080 $0.00873
Opus 5 $0.00040 $0.00436
Sonnet 5 $0.00016 $0.00175
Haiku 4.5 $0.00008 $0.00087

Measured 12d ago against content hash 2032c855f554, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

powerbi-project-workflows 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 12d ago.

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/powerbi-project-workflows/SKILL.md · 70 lines

How it starts

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

Power BI project workflows

Turn a plain-language Power BI request into a verified result with the pbi_* tools. Prefer the high-level workflow tool that matches the requested outcome; use lower-level tools only when the workflow needs diagnosis or a precise edit.

Establish the target

  • If readiness or the active target is unclear, call pbi_health_check and pbi_capabilities before doing work.
  • For an open Desktop model, use pbi_list_desktop_models, then pbi_select_model. Never guess which model the user means when several are open.
  • For a file or folder, use pbi_prepare_project with the exact path. It resolves .pbip, converts a .pbix when requested, and rejects ambiguous folders instead of choosing a project silently.
  • Keep the live semantic-model layer separate from the PBIP file layer. Desktop exposes DAX/TOM data and model operations; pages and visuals are authored in PBIR files while the project is safe to write.

Route by outcome

  • Audit or explain: start with pbi_model_summary and pbi_audit_project using compact=true. Use pbi_audit_model, pbi_audit_report_only, or pbi_diagnose_data only when the user needs that narrower evidence. Data diagnosis requires a live, loaded Desktop model.
  • Diagnose DAX: inspect the measure and its dependencies, reproduce the symptom with read-only pbi_run_dax, and use pbi_validate_measures before creating or updating a measure. Do not treat a syntactically valid measure as semantically correct without a representative query.
  • Build a page or dashboard: prefer pbi_build_dashboard, pbi_build_executive_page, or pbi_generate_report_page. Run the preview or dry_run=true path first, verify referenced measures and fields, then apply only when the user's request authorizes the write.
  • Repair quality findings: audit first, select concrete rules, call pbi_plan_audit_fixes, show the proposed actions, and pass only those actions to pbi_apply_audit_fixes. Never invent an "apply everything" operation.
  • Prepare delivery: call pbi_prepare_delivery in dry-run mode, resolve blockers, validate the project, and generate the requested documentation or exports. Use pbi_finalize_delivery only when the user asked for the final deliverable and the target path and overwrite behavior are unambiguous.

Read the full file on GitHub · 70 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. 12d ago First seen · 70 lines · 80 tokens per session scan A 2032c855f554

Subscribe to this mod's changes

powerbi-project-workflows is a skill published in the GitHub repository HorizunGroup/horizun-pbi-mcp (13 stars, last pushed 7d ago), licensed Apache-2.0. It adds 80 tokens to every session and 873 once invoked, about $0.0004 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-30.

Related

Other skills, from other repositories

insights-dashboard

Use this skill whenever the user wants to create, build, set up, or fix a dashboard in Frappe Insights (also called "Insights", "Frappe Insights v3", or the analytics module). Trigger on phrases like: "create an Insights dashboard", "build a dashboard in Insights", "add a chart to a workbook", "create a workbook"…

buildswithpaul/Frappe_Assistant_Core · 133 tokens

reusable-visualization

Build ONE reusable chart visualization component that receives its data and its settings from the host application instead of fetching them, and declares the fields and config options the host exposes to viewers. Use this whenever a single chart component is reused across many different queries rather than built for…

lightdash/lightdash · 102 tokens

lightdash-agent-slack-messaging

Use this skill when writing, designing, or generating Slack messages for Lightdash's in-app analytics agent. Triggers when someone asks to create agent update messages, Slack digests, agent notifications, weekly summaries, daily summaries, or any Slack copy for the Lightdash project agent. Also use when asked to vary…

lightdash/lightdash · 114 tokens

upgrade-preflight

Checks whether a self-hosted Lightdash upgrade is safe to run, and reads the tooling's answer without over-reading it. Use when upgrading a self-hosted instance, planning a maintenance window, answering "is this upgrade safe", or recovering a failed, hung, parked or lock-stuck migration — covers lightdash…

lightdash/lightdash · 101 tokens

developing-in-lightdash

Use when reading, creating, and editing Lightdash dashboards and charts as JSON, including dashboard layout and chart-type-specific configuration.

lightdash/lightdash · 31 tokens

developing-data-apps-locally

Use when editing a locally created or downloaded Lightdash data app — how local editing, building, and uploading work, and what is read-only.

lightdash/lightdash · 38 tokens