power-bi-agentic-development is a free, open source business intelligence & reporting project written in C# and released under GPL-3.0. It has 919 GitHub stars, 134 forks and 2 open issues, and was last pushed 15 hours ago. On this registry it ranks #27 of 34 tracked projects in Business Intelligence & Reporting, with 5 head-to-head comparisons available. It gained 4 stars over the last 3 tracked days.

What is power-bi-agentic-development?

Power BI AI skills and Power BI agents for Claude Code and GitHub Copilot: a plugin marketplace of Power BI skills, subagents, and hooks for semantic models, DAX, TMDL, reports, and AI dashboards, aimed at Power BI and Microsoft Fabric practitioners who build with coding agents.

What it is

power-bi-agentic-development is an Anthropic-format plugin marketplace that packages Power BI and Microsoft Fabric expertise for coding agents. The repository uses the .claude-plugin/marketplace.json manifest layout, so the marketplace and its child plugins install into Claude Code without modification. It lives in the Claude Code and GitHub Copilot ecosystem, and it targets agentic development: the practice of using agents to build, manage, and optimize artifacts and software, which in this case means semantic models, reports, and the things around them such as workspaces, deployment pipelines, and processes. The project is written in C# and licensed under GPL-3.0.

The concrete problem it solves is cold-start knowledge. A general coding agent has no built-in grounding in DAX, TMDL, or the Power BI project file formats, and no structural understanding of Fabric administration or deployment pipelines. Rather than replacing a product, it replaces the manual work of assembling and maintaining per-topic instruction files and scripts for the agent. Plugins bundle skills, subagents, hooks, and MCP servers focused on special topics, giving the agent domain-specific instruction and tooling. Rather than hand-rolling that material, a team adds one marketplace and installs the plugins it needs.

Key capabilities

  • A plugin marketplace registered with claude plugin marketplace add data-goblin/power-bi-agentic-development, with marketplace auto-update available.
  • Eleven installable plugins, each named in the README: goblin-mode, tabular-editor, pbi-desktop, pbip, semantic-models, reports, paginated-reports, custom-visuals, fabric-cli, fabric-admin, and etl.
  • Install by command line, for example claude plugin install semantic-models@power-bi-agentic-development, or through the /plugin interface.
  • Copilot CLI support: the standalone Copilot CLI reads the same .claude-plugin/marketplace.json manifest, so the marketplace and child-plugin layout works without modification, and copilot plugin install is supported.
  • Coverage across DAX, TMDL, semantic models, reports, paginated reports, custom visuals, Fabric administration, and ETL, reflected in both the plugin list and the repository topics.
  • Plugin contents are not limited to instruction files: plugins can contain skills, subagents, hooks, and MCP servers.
  • A worked example integrating pbir-cli with the skills, demonstrated in a linked YouTube walkthrough.

Who uses it and how

  • Claude Code users who want Power BI and Fabric knowledge inside their existing agent workflow, adding plugins one at a time rather than all at once.
  • Teams standardizing agent behavior across a repository, using the marketplace plus auto-update so plugin versions track a single source.
  • Copilot CLI users, who reuse the same manifest and plugin layout without a separate distribution channel.
  • Windows-based Power BI developers, for whom git clone and plugin installation depend on enabling long path support at both the OS and git level.
  • Data platform teams working across Fabric administration and deployment pipelines, where the fabric-admin, fabric-cli, and etl plugins map to distinct responsibilities.

Getting started

Add the marketplace in a terminal with claude plugin marketplace add data-goblin/power-bi-agentic-development, then install individual plugins through /plugin or directly with claude plugin install @power-bi-agentic-development. Copilot CLI users install from the same repository, since it reads the identical manifest.

How it compares

The provided facts name no paid products that this project replaces, and no comparable tool in the same registry. What the facts do establish is that it functions as a marketplace layer for Claude Code and GitHub Copilot rather than a standalone application, so it complements those agents instead of competing with them. It stands alone in this registry.

When to use it — and when not to

Adoption means accepting an active breaking transition: versions 26.26 through 26.38 deliberately consolidate, rename, and remove skills between weekly releases, and compatibility across transition releases should not be assumed. Anyone needing a stable skill structure should pin 26.25 or earlier, and anyone unwilling to track weekly restructuring should not adopt the transition range at all. Windows users must also handle the legacy 260-character MAX_PATH limit by enabling long path support at the OS and git level, for example through git config --system core.longpaths true or the provided useful-stuff/agent-scripts/enable-windows-longpaths.ps1 script run from an elevated PowerShell session, with a reboot recommended after the registry change; without this, installation aborts with Filename too long.

project readme (upstream, from github) — read inline

power-bi-agentic-development

The best source for Power BI AI skills and agentic development resources in one marketplace

Teach AI agents like Claude Code or GitHub Copilot Power BI and Microsoft Fabric

Version Power BI Microsoft Fabric Tabular Editor License

[!WARNING] These skills are under active development with a weekly release cadence, so expect regular renaming and restructuring.

Versions 26.26 through 26.38 are a deliberate breaking transition. Skills may be consolidated, renamed, removed, or made less automatic between weekly releases in this range. Pin 26.25 or earlier if you need the pre-transition skill structure and behavior; do not assume compatibility from one transition release to the next.


What is agentic development?

  • Agentic development is when you use agents to help you build, manage, and optimize artifacts and software. This includes semantic models, reports, and the things around them, like workspaces, deployment pipelines, and also processes.
  • A marketplace hosts plugins that you can install. Plugins are a collection of resources that help coding agents perform better. They are typically special instruction files and scripts. Plugins can contain skills, subagents, hooks, and MCP servers focused on special topics or tasks.
  • This marketplace is focused on everything to help your agent work well with Power BI and Fabric: Power BI skills, Fabric skills, subagents, and hooks for coding agents. Read further for more information.

Installation

Here's how you get started in Claude Code; run this in the terminal to get the marketplace:

claude plugin marketplace add data-goblin/power-bi-agentic-development

Example: Using the pbir-cli with the skills

Click here for a YouTube walkthrough

pbir-cli demo

Claude Code

Add the marketplace, then install plugins via /plugin and navigating to the installed marketplace.

Install plugins from the marketplace Enable marketplace auto-update

Alternative; add plugins via command line:

claude plugin install goblin-mode@power-bi-agentic-development
claude plugin install tabular-editor@power-bi-agentic-development
claude plugin install pbi-desktop@power-bi-agentic-development
claude plugin install pbip@power-bi-agentic-development
claude plugin install semantic-models@power-bi-agentic-development
claude plugin install reports@power-bi-agentic-development
claude plugin install paginated-reports@power-bi-agentic-development
claude plugin install custom-visuals@power-bi-agentic-development
claude plugin install fabric-cli@power-bi-agentic-development
claude plugin install fabric-admin@power-bi-agentic-development
claude plugin install etl@power-bi-agentic-development

Copilot CLI

The standalone Copilot CLI supports plugin installation from GitHub repos. Copilot CLI reads the same .claude-plugin/marketplace.json manifest this repo uses, so the marketplace and child-plugin layout works without modification.

Windows long paths

TMDL files have a problem with repository-relative paths over 260 characters. Windows' legacy MAX_PATH blocks git clone from writing them unless long path support is enabled at both the OS and git level. Without this, copilot plugin install aborts with Filename too long.

Check useful-stuff/agent-scripts/enable-windows-longpaths.ps1 as an example of a script you can run from an elevated ps environment to enable long paths; there are other routes to do this that you can find online, too... just ask Copilot. A reboot is recommended after the registry change. This is a Windows OS limitation, documented at Maximum Path Length Limitation.

See also the below git config command:

git config --system core.longpaths true
Additional installation instructions

This repository is an Anthropic-format plugin marketplace (a set of plugins), not a single distributable plugin, so the root .claude-plugin/ contains only marketplace.json. Two documented install paths work:

1. Register the marketplace once, then install named child plugins. Example:

copilot plugin marketplace add data-goblin/power-bi-agentic-development
copilot plugin install tabular-editor@power-bi-agentic-development

2. Or install a single plugin directly from its subdirectory, no marketplace registration needed. Example:

copilot plugin install data-goblin/power-bi-agentic-development:plugins/pbip

Both forms are documented in the Copilot CLI plugin reference and the plugins how-to. Inside an interactive Copilot session, /plugin install PLUGIN-NAME@MARKETPLACE-NAME is the equivalent of (1). The bare copilot plugin install data-goblin/power-bi-agentic-development (no qualifier) will not install anything useful, because the root is a marketplace catalog, not a plugin.

Verify installation in Copilot CLI

Inside Copilot CLI:

/env                    # Loaded instructions, MCP servers, skills, agents, plugins, LSPs, extensions
/plugin list            # Installed plugins
/skills list            # Available skills
/skills info pbip       # Details for a specific skill
/agent                  # Browse installed agents
Compatibility notes
  • Skills load identically; Copilot CLI reads skills//SKILL.md.
  • Agents use the *.agent.md extension required by Copilot CLI's documented convention. Claude Code matches any *.md file in agents/, so the dual extension works in both tools.
  • MCP servers load from .mcp.json (plugin root) or .github/mcp.json. The plugins in this repo do not currently ship MCP servers.
  • Hooks are registered via hooks.json and reference scripts using ${CLAUDE_PLUGIN_ROOT}. Copilot CLI ≥ 1.0.26 (2026-04-14) sets CLAUDE_PLUGIN_ROOT for plugin hooks (changelog); older builds do not, which causes hook commands to resolve to broken paths. Run copilot update if hooks fail to fire. Native Windows bash users may also hit a separate path-format bug tracked upstream at claude-code#11984.

Overview

The repo contains skills, agents, and hooks.

  • Skills teach agents domain knowledge and workflows. They activate automatically based on task context, or can be invoked manually with /skill-name. In Claude Code, skills and commands have coalesced; commands are simply more prescriptive skill workflows.
  • Agents are autonomous subprocesses that handle complex, multi-step tasks independently; typically used for review and validation.
  • Hooks run automatically after tool use to validate files and catch errors early. They are deterministic; they fire when a specific pattern is matched, not by LLM judgment.

Hook checks can be individually toggled via config files. Set any check to false to disable it:

  • plugins/pbip/hooks/config.yaml -- PBIR, TMDL, and report binding validation
  • plugins/pbi-desktop/hooks/config.yaml -- DAX references, measure metadata, referential integrity, metadata cache

Power BI and Fabric skills, agents, and hooks: available plugins

[!WARNING] Don't install every plugin. Each skill competes for the agent's attention and context window, so install a plugin only when y

readme truncated — read the full docs on github

Frequently asked questions

Is power-bi-agentic-development free to use?

power-bi-agentic-development is open source under the GPL-3.0 licence. There is no licence fee and no seat count — you can self-host it or, where the project offers one, pay a vendor for a managed version instead.

What does power-bi-agentic-development do?

Power BI AI skills and Power BI agents for Claude Code and GitHub Copilot: a plugin marketplace of Power BI skills, subagents, and hooks for semantic models, DA

What is power-bi-agentic-development written in?

power-bi-agentic-development is primarily written in C#. Its source is publicly available at https://github.com/data-goblin/power-bi-agentic-development, and it has 919 GitHub stars.