@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.
- package/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/.claude-plugin/skill-manifest.json +1 -1
- package/.plugin/plugin.json +1 -1
- package/CHANGELOG.md +24 -0
- package/README.md +631 -96
- package/bin/cli.js +24 -45
- package/bin/commands/build-desktop.js +60 -6
- package/bin/commands/diff.js +86 -1
- package/bin/commands/watch.js +50 -5
- package/bin/postinstall.js +1 -1
- package/commands/report-design.md +1 -1
- package/desktop-extension/server.js +43 -10
- package/package.json +3 -4
- package/skills/bi-start/SKILL.md +1 -1
- package/skills/bi-start/scripts/update-check.js +1 -1
- package/skills/pbi-connect/SKILL.md +1 -1
- package/skills/pbi-connect/scripts/update-check.js +1 -1
- package/skills/project-kickoff/SKILL.md +1 -1
- package/skills/project-kickoff/scripts/update-check.js +1 -1
- package/skills/report-design/SKILL.md +2 -2
- package/skills/report-design/references/layouts/finance.md +2 -2
- package/skills/report-design/references/native-visuals.md +2 -2
- package/skills/report-design/references/slicer.md +1 -1
- package/skills/report-design/references/textbox.md +1 -1
- package/skills/report-design/scripts/create-visual.js +65 -1
- package/skills/report-design/scripts/update-check.js +1 -1
- package/skills/report-design/scripts/validate-pbir.js +29 -0
- package/src/content/skills/report-design/SKILL.md +1 -1
- package/src/content/skills/report-design/references/layouts/finance.md +2 -2
- package/src/content/skills/report-design/references/native-visuals.md +2 -2
- package/src/content/skills/report-design/references/slicer.md +1 -1
- package/src/content/skills/report-design/references/textbox.md +1 -1
- package/src/content/skills/report-design/scripts/create-visual.js +65 -1
- 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.
|
|
9
|
+
"version": "4.1.3",
|
|
10
10
|
"repository": "https://github.com/luquimbo/bi-superpowers"
|
|
11
11
|
},
|
|
12
12
|
"plugins": [
|
package/.plugin/plugin.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"spec": "open-plugin-spec@1",
|
|
3
3
|
"name": "bi-superpowers",
|
|
4
|
-
"version": "4.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/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`.**
|