@luquimbo/bi-superpowers 4.1.1 → 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 (42) 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/AGENTS.md +4 -5
  6. package/CHANGELOG.md +24 -0
  7. package/README.md +633 -93
  8. package/bin/cli.js +52 -54
  9. package/bin/commands/build-desktop.js +60 -6
  10. package/bin/commands/diff.js +86 -1
  11. package/bin/commands/watch.js +50 -5
  12. package/bin/lib/generators/claude-plugin.js +1 -1
  13. package/bin/postinstall.js +1 -1
  14. package/commands/bi-start.md +2 -2
  15. package/commands/pbi-connect.md +1 -1
  16. package/commands/project-kickoff.md +5 -5
  17. package/commands/report-design.md +8 -8
  18. package/desktop-extension/server.js +43 -10
  19. package/package.json +5 -5
  20. package/skills/bi-start/SKILL.md +3 -3
  21. package/skills/bi-start/scripts/update-check.js +1 -1
  22. package/skills/pbi-connect/SKILL.md +2 -2
  23. package/skills/pbi-connect/scripts/update-check.js +1 -1
  24. package/skills/project-kickoff/SKILL.md +6 -6
  25. package/skills/project-kickoff/scripts/update-check.js +1 -1
  26. package/skills/report-design/SKILL.md +9 -9
  27. package/skills/report-design/references/layouts/finance.md +2 -2
  28. package/skills/report-design/references/native-visuals.md +2 -2
  29. package/skills/report-design/references/slicer.md +1 -1
  30. package/skills/report-design/references/textbox.md +1 -1
  31. package/skills/report-design/scripts/create-visual.js +65 -1
  32. package/skills/report-design/scripts/update-check.js +1 -1
  33. package/skills/report-design/scripts/validate-pbir.js +29 -0
  34. package/src/content/skills/bi-start.md +2 -2
  35. package/src/content/skills/project-kickoff.md +4 -4
  36. package/src/content/skills/report-design/SKILL.md +7 -7
  37. package/src/content/skills/report-design/references/layouts/finance.md +2 -2
  38. package/src/content/skills/report-design/references/native-visuals.md +2 -2
  39. package/src/content/skills/report-design/references/slicer.md +1 -1
  40. package/src/content/skills/report-design/references/textbox.md +1 -1
  41. package/src/content/skills/report-design/scripts/create-visual.js +65 -1
  42. 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.1",
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.1",
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.1",
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.1",
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/AGENTS.md CHANGED
@@ -56,8 +56,7 @@ When the user asks for things like **"publica una nueva versión"**, **"publish
56
56
  The repo uses **GitHub Actions** to publish automatically. The `NPM_TOKEN` is stored as a GitHub Secret — never commit it to the repo or use it locally for publishes. The workflow at `.github/workflows/publish.yml` triggers on:
57
57
 
58
58
  1. **Tag push** (`v*`) — preferred, triggered by pushing a version tag
59
- 2. **GitHub release published** — manual via web UI
60
- 3. **Manual workflow dispatch** — via Actions tab
59
+ 2. **Manual workflow dispatch** — via Actions tab, only from `main` on the already-tagged release commit
61
60
 
62
61
  ### Standard publish flow (do this when asked)
63
62
 
@@ -84,7 +83,7 @@ The repo uses **GitHub Actions** to publish automatically. The `NPM_TOKEN` is st
84
83
  ```
85
84
  7. **Create the version tag:**
86
85
  ```bash
87
- git tag vX.Y.Z
86
+ git tag -a vX.Y.Z -m "vX.Y.Z"
88
87
  ```
89
88
  8. **Push commits and tag together:**
90
89
  ```bash
@@ -127,7 +126,7 @@ npm install -g @luquimbo/bi-superpowers
127
126
  super install
128
127
  ```
129
128
 
130
- The shared v4.1.0 contract is:
129
+ The shared v4.1.x contract is:
131
130
  - **4 skills** — `bi-start` (session opener), `project-kickoff`, `pbi-connect`, `report-design`
132
131
  - **2 MCP servers** — `powerbi-modeling-mcp`, `microsoft-learn`
133
132
 
@@ -138,7 +137,7 @@ Agent-specific behavior:
138
137
  - **Gemini CLI** — uses the installed skills + MCP config via natural-language prompts
139
138
  - **Kilo Code** — uses the installed skills + MCP config via natural-language prompts
140
139
 
141
- `/report-design` has one extra runtime prerequisite on every agent: **Windows + Power BI Desktop**. `pbi-cli-tool` is optional for model introspection only; the PBIR authoring flow is driven by the bundled Node scripts. If that Desktop stack is not available yet, start with `bi-start`, `project-kickoff`, or `pbi-connect`.
140
+ `/report-design` has one extra runtime prerequisite on every agent: **Windows + Power BI Desktop (standalone) + Python 3.10+ + `pipx` + `pbi-cli-tool`**. The bundled Node scripts handle visual/theme authoring, but the current flow still uses `pbi` for connect, page ops, and validate. If that stack is not available yet, start with `bi-start`, `project-kickoff`, or `pbi-connect`.
142
141
 
143
142
  ### Claude Desktop
144
143
 
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`.**