@luquimbo/bi-superpowers 4.1.2 → 4.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/.claude-plugin/marketplace.json +1 -1
  2. package/.claude-plugin/plugin.json +1 -1
  3. package/.claude-plugin/skill-manifest.json +1 -1
  4. package/.plugin/plugin.json +1 -1
  5. package/CHANGELOG.md +24 -0
  6. package/README.md +631 -96
  7. package/bin/cli.js +24 -45
  8. package/bin/commands/build-desktop.js +60 -6
  9. package/bin/commands/diff.js +86 -1
  10. package/bin/commands/watch.js +50 -5
  11. package/bin/postinstall.js +1 -1
  12. package/commands/report-design.md +1 -1
  13. package/desktop-extension/server.js +43 -10
  14. package/package.json +3 -4
  15. package/skills/bi-start/SKILL.md +1 -1
  16. package/skills/bi-start/scripts/update-check.js +1 -1
  17. package/skills/pbi-connect/SKILL.md +1 -1
  18. package/skills/pbi-connect/scripts/update-check.js +1 -1
  19. package/skills/project-kickoff/SKILL.md +1 -1
  20. package/skills/project-kickoff/scripts/update-check.js +1 -1
  21. package/skills/report-design/SKILL.md +2 -2
  22. package/skills/report-design/references/layouts/finance.md +2 -2
  23. package/skills/report-design/references/native-visuals.md +2 -2
  24. package/skills/report-design/references/slicer.md +1 -1
  25. package/skills/report-design/references/textbox.md +1 -1
  26. package/skills/report-design/scripts/create-visual.js +65 -1
  27. package/skills/report-design/scripts/update-check.js +1 -1
  28. package/skills/report-design/scripts/validate-pbir.js +29 -0
  29. package/src/content/skills/report-design/SKILL.md +1 -1
  30. package/src/content/skills/report-design/references/layouts/finance.md +2 -2
  31. package/src/content/skills/report-design/references/native-visuals.md +2 -2
  32. package/src/content/skills/report-design/references/slicer.md +1 -1
  33. package/src/content/skills/report-design/references/textbox.md +1 -1
  34. package/src/content/skills/report-design/scripts/create-visual.js +65 -1
  35. package/src/content/skills/report-design/scripts/validate-pbir.js +29 -0
@@ -6,7 +6,7 @@
6
6
  },
7
7
  "metadata": {
8
8
  "description": "AI-powered skills for Power BI Desktop development. Works with Claude Code, GitHub Copilot, Codex, Gemini CLI, and Kilo Code.",
9
- "version": "4.1.2",
9
+ "version": "4.1.3",
10
10
  "repository": "https://github.com/luquimbo/bi-superpowers"
11
11
  },
12
12
  "plugins": [
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bi-superpowers",
3
3
  "description": "Claude Code plugin for Power BI, Microsoft Fabric, and semantic model workflows powered by the official Microsoft MCP servers.",
4
- "version": "4.1.2",
4
+ "version": "4.1.3",
5
5
  "author": {
6
6
  "name": "Lucas Sanchez"
7
7
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bi-superpowers",
3
- "version": "4.1.2",
3
+ "version": "4.1.3",
4
4
  "skillCount": 4,
5
5
  "skills": [
6
6
  {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "spec": "open-plugin-spec@1",
3
3
  "name": "bi-superpowers",
4
- "version": "4.1.2",
4
+ "version": "4.1.3",
5
5
  "description": "Claude Code plugin for Power BI, Microsoft Fabric, and semantic model workflows powered by the official Microsoft MCP servers.",
6
6
  "author": {
7
7
  "name": "Lucas Sanchez"
package/CHANGELOG.md CHANGED
@@ -5,6 +5,30 @@ All notable changes to BI Agent Superpowers will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [4.1.3] — 2026-04-23
9
+
10
+ ### Fixed
11
+
12
+ - Claude Desktop `.mcpb` builds now bundle folder-based skills as `skills/<name>/SKILL.md`
13
+ and include `report-design` runtime `references/` plus `scripts/` assets, so installed
14
+ Desktop prompts no longer point at missing files.
15
+ - `super scan` now compares source skills against the actual generated Claude Code command
16
+ output, including frontmatter and update-check preamble, eliminating permanent false drift.
17
+ - `report-design` `create-visual.js` now rejects path traversal in `--name` and non-finite
18
+ numeric placement flags before writing `visual.json`.
19
+ - `report-design` `validate-pbir.js` now flags non-finite `position` values.
20
+ - Claude Desktop setup instructions and postinstall output use the canonical
21
+ `powerbi-modeling-mcp` server key.
22
+ - `super sentinel` now watches folder-based skill trees, including `SKILL.md`, `references/`,
23
+ and runtime scripts, and regenerates through the same versioned generator path as
24
+ `super recharge`.
25
+ - Removed stale conditional-formatting release wording from `report-design` source docs.
26
+
27
+ ### Changed
28
+
29
+ - Removed the runtime `update-notifier` dependency and upgraded `chokidar` to v4. Runtime
30
+ and full npm audit checks are clean in this release line.
31
+
8
32
  ## [4.1.0] — 2026-04-21
9
33
 
10
34
  > **First stable release — the de-facto 1.0 of `@luquimbo/bi-superpowers`.**