@luquimbo/bi-superpowers 4.1.3 → 4.1.4
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/AGENTS.md +9 -7
- package/CHANGELOG.md +16 -0
- package/README.md +11 -5
- package/bin/cli.js +52 -16
- package/bin/commands/mcp-setup.js +26 -3
- package/bin/utils/mcp-detect.js +1 -1
- package/commands/bi-start.md +3 -3
- package/commands/pbi-connect.md +60 -24
- package/package.json +1 -1
- package/skills/bi-start/SKILL.md +4 -4
- package/skills/bi-start/scripts/update-check.js +1 -1
- package/skills/pbi-connect/SKILL.md +61 -25
- 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 +1 -1
- package/skills/report-design/scripts/update-check.js +1 -1
- package/src/content/base.md +1 -1
- package/src/content/routing.md +1 -1
- package/src/content/skills/bi-start.md +3 -3
- package/src/content/skills/pbi-connect.md +60 -24
|
@@ -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.4",
|
|
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.4",
|
|
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
|
@@ -131,11 +131,12 @@ The shared v4.1.x contract is:
|
|
|
131
131
|
- **2 MCP servers** — `powerbi-modeling-mcp`, `microsoft-learn`
|
|
132
132
|
|
|
133
133
|
Agent-specific behavior:
|
|
134
|
-
- **
|
|
135
|
-
- **
|
|
136
|
-
- **
|
|
137
|
-
- **
|
|
138
|
-
- **
|
|
134
|
+
- **All agents** — the primary install is user-level via `super install`, not repo-local.
|
|
135
|
+
- **Claude Code** — `super kickoff` can optionally generate a project-local plugin with slash commands: `/bi-start`, `/project-kickoff`, `/pbi-connect`, `/report-design`.
|
|
136
|
+
- **GitHub Copilot** — uses the installed user-level skills + MCP config via natural-language prompts.
|
|
137
|
+
- **Codex** — uses the installed user-level skills + MCP config via natural-language prompts. Do not run `super kickoff` for Codex setup.
|
|
138
|
+
- **Gemini CLI** — uses the installed user-level skills + MCP config via natural-language prompts.
|
|
139
|
+
- **Kilo Code** — uses the installed user-level skills + MCP config via natural-language prompts.
|
|
139
140
|
|
|
140
141
|
`/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`.
|
|
141
142
|
|
|
@@ -194,13 +195,14 @@ Los 4 skills quedan disponibles como MCP prompts.
|
|
|
194
195
|
|
|
195
196
|
## Plugin System
|
|
196
197
|
|
|
197
|
-
BI Agent Superpowers
|
|
198
|
+
BI Agent Superpowers installs skills and MCP configuration at the user level for all supported agents. It can also generate a native Claude Code plugin from the same source of truth when a user explicitly wants repo-local Claude Code plugin files.
|
|
198
199
|
|
|
199
200
|
### Output Targets
|
|
200
201
|
|
|
201
202
|
| Target | Format | Output |
|
|
202
203
|
|--------|--------|--------|
|
|
203
|
-
|
|
|
204
|
+
| All agents | User-level skills + MCP config | `~/.agents/skills`, agent-specific MCP config |
|
|
205
|
+
| Claude Code / 1code.dev | Optional local plugin | `.claude-plugin/`, `commands/`, `skills/`, `.mcp.json` |
|
|
204
206
|
| Claude Desktop | MCPB extension | `bi-superpowers.mcpb` (via `super build-desktop`) |
|
|
205
207
|
|
|
206
208
|
### Plugin Structure (generated by kickoff/recharge)
|
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,22 @@ 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.4] — 2026-04-24
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- `super mcp-setup` no longer creates repo-local `.mcp.json` files in arbitrary
|
|
13
|
+
projects. It now only runs against an existing local Claude Code plugin unless
|
|
14
|
+
the user explicitly passes a local plugin target.
|
|
15
|
+
- `super recharge` now refuses to generate local Claude Code plugin files in an
|
|
16
|
+
uninitialized repo, pointing users back to the user-level `super install`
|
|
17
|
+
workflow instead.
|
|
18
|
+
- CLI help, install docs, and `pbi-connect`/`bi-start` skill guidance now make
|
|
19
|
+
`super install --all --yes` the primary multi-agent path for Claude Code,
|
|
20
|
+
GitHub Copilot, Codex, Gemini CLI, and Kilo Code. `super kickoff`,
|
|
21
|
+
`super recharge`, and `super mcp-setup` are documented as optional local
|
|
22
|
+
Claude Code plugin commands only.
|
|
23
|
+
|
|
8
24
|
## [4.1.3] — 2026-04-23
|
|
9
25
|
|
|
10
26
|
### Fixed
|
package/README.md
CHANGED
|
@@ -118,7 +118,9 @@ After that, start a new session and run:
|
|
|
118
118
|
/bi-start
|
|
119
119
|
```
|
|
120
120
|
|
|
121
|
-
### Optional Local Claude Code Plugin
|
|
121
|
+
### Advanced: Optional Local Claude Code Plugin
|
|
122
|
+
|
|
123
|
+
This is only for Claude Code users who deliberately want repo-local slash-command plugin files. Codex, GitHub Copilot, Gemini CLI, and Kilo Code should use `super install` above; do not run `super kickoff` for those agents.
|
|
122
124
|
|
|
123
125
|
Inside a Power BI project repo:
|
|
124
126
|
|
|
@@ -162,7 +164,7 @@ Run these Claude Code plugin commands:
|
|
|
162
164
|
After installation, start the plugin with /bi-start and tell me if any restart or reload is needed.
|
|
163
165
|
```
|
|
164
166
|
|
|
165
|
-
If you also want project-local plugin files in the current repo:
|
|
167
|
+
If you also want project-local plugin files in the current repo for Claude Code only:
|
|
166
168
|
|
|
167
169
|
```text
|
|
168
170
|
Set up BI Agent Superpowers for this project as a local Claude Code plugin.
|
|
@@ -199,6 +201,8 @@ npm install -g @luquimbo/bi-superpowers
|
|
|
199
201
|
super install --agent codex --yes
|
|
200
202
|
|
|
201
203
|
After it finishes, verify that the shared skills were installed under ~/.agents/skills and that the Codex MCP config was updated. Then summarize the installed skills and MCP servers.
|
|
204
|
+
|
|
205
|
+
Do not run super kickoff or super mcp-setup for Codex; those commands are only for optional repo-local Claude Code plugin files.
|
|
202
206
|
```
|
|
203
207
|
|
|
204
208
|
### Gemini CLI
|
|
@@ -385,8 +389,8 @@ Common commands:
|
|
|
385
389
|
|
|
386
390
|
```bash
|
|
387
391
|
super install # Install 4 skills + 2 MCPs for selected agents
|
|
388
|
-
super kickoff #
|
|
389
|
-
super recharge # Regenerate local plugin artifacts
|
|
392
|
+
super kickoff # Advanced: generate optional local Claude Code plugin files
|
|
393
|
+
super recharge # Regenerate optional local Claude Code plugin artifacts
|
|
390
394
|
super powers # List available skills
|
|
391
395
|
super scan # Compare source skills with generated artifacts
|
|
392
396
|
super checkup # Validate skill content
|
|
@@ -403,6 +407,8 @@ super help # Show full CLI help
|
|
|
403
407
|
|
|
404
408
|
Generated by `super kickoff` or `super recharge`:
|
|
405
409
|
|
|
410
|
+
This tree is optional and Claude Code specific. It is not required for Codex, GitHub Copilot, Gemini CLI, or Kilo Code because those agents use the user-level install created by `super install`.
|
|
411
|
+
|
|
406
412
|
```text
|
|
407
413
|
project/
|
|
408
414
|
├─ .claude-plugin/
|
|
@@ -521,7 +527,7 @@ This means `pbi-cli-tool` is not optional for `report-design` today.
|
|
|
521
527
|
|
|
522
528
|
```bash
|
|
523
529
|
super upgrade
|
|
524
|
-
super install --yes
|
|
530
|
+
super install --all --yes
|
|
525
531
|
```
|
|
526
532
|
|
|
527
533
|
If you created a project-local plugin:
|
package/bin/cli.js
CHANGED
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
* Architecture:
|
|
12
12
|
* - Skills are authored once in src/content/skills/ and copied out to
|
|
13
13
|
* each supported agent by `super install`.
|
|
14
|
-
* - `super kickoff` generates a
|
|
14
|
+
* - `super kickoff` optionally generates a local Claude Code plugin tree in a
|
|
15
15
|
* user project (skills + commands + MCP config).
|
|
16
|
-
* - `super recharge` regenerates
|
|
16
|
+
* - `super recharge` regenerates an existing local Claude Code plugin after edits.
|
|
17
17
|
*
|
|
18
18
|
* Supported agents: Claude Code, GitHub Copilot, Codex, Gemini CLI, Kilo Code.
|
|
19
19
|
* License: MIT. This project is fully open source — no activation, no keys.
|
|
@@ -150,18 +150,18 @@ Open-source toolkit for Power BI Desktop development across 5 AI coding agents:
|
|
|
150
150
|
Claude Code · GitHub Copilot · Codex · Gemini CLI · Kilo Code.
|
|
151
151
|
|
|
152
152
|
Quick Start:
|
|
153
|
-
super install
|
|
154
|
-
super
|
|
153
|
+
super install --all --yes # Install skills + MCPs user-level for all agents
|
|
154
|
+
super powers # List the skills and MCPs available
|
|
155
155
|
|
|
156
156
|
Usage:
|
|
157
157
|
super <command> [options]
|
|
158
158
|
|
|
159
159
|
Primary commands:
|
|
160
|
-
install Install the 4 skills + 2 MCPs across your AI agents
|
|
161
|
-
kickoff [path]
|
|
162
|
-
recharge [path]
|
|
160
|
+
install Install the 4 skills + 2 MCPs user-level across your AI agents
|
|
161
|
+
kickoff [path] Optional: generate a repo-local Claude Code plugin
|
|
162
|
+
recharge [path] Optional: regenerate an existing repo-local Claude Code plugin
|
|
163
163
|
build-desktop Build the .mcpb extension for Claude Desktop
|
|
164
|
-
mcp-setup
|
|
164
|
+
mcp-setup Refresh MCP config for an existing Claude Code local plugin
|
|
165
165
|
powers List available skills and MCPs
|
|
166
166
|
upgrade Update to the latest version on npm
|
|
167
167
|
about Show installation info
|
|
@@ -178,13 +178,14 @@ Options:
|
|
|
178
178
|
Examples:
|
|
179
179
|
super install # Interactive installer for all agents
|
|
180
180
|
super install --all --yes # Non-interactive install for every agent
|
|
181
|
+
super install -a codex # Install user-level skills + MCPs for Codex
|
|
181
182
|
super install -a claude-code # Install only for Claude Code
|
|
182
|
-
super kickoff #
|
|
183
|
-
super kickoff ./my-project #
|
|
184
|
-
super kickoff --dry-run # Preview
|
|
185
|
-
super recharge # Regenerate
|
|
183
|
+
super kickoff # Claude Code only: create local plugin files
|
|
184
|
+
super kickoff ./my-project # Claude Code only: initialize in a repo
|
|
185
|
+
super kickoff --dry-run # Preview local Claude Code plugin files
|
|
186
|
+
super recharge # Regenerate existing local Claude Code plugin
|
|
186
187
|
super build-desktop # Build .mcpb for Claude Desktop
|
|
187
|
-
super mcp-setup #
|
|
188
|
+
super mcp-setup # Existing local Claude Code plugin only
|
|
188
189
|
|
|
189
190
|
Open source — MIT licensed.
|
|
190
191
|
Documentation: https://github.com/luquimbo/bi-superpowers
|
|
@@ -257,7 +258,7 @@ function parseSkillMetadata(content) {
|
|
|
257
258
|
// ============================================
|
|
258
259
|
|
|
259
260
|
/**
|
|
260
|
-
* `super kickoff` — generate
|
|
261
|
+
* `super kickoff` — generate an optional local Claude Code plugin in the target directory.
|
|
261
262
|
*
|
|
262
263
|
* What it does:
|
|
263
264
|
* 1. Generates .claude-plugin/, .mcp.json, commands/, skills/ in the target.
|
|
@@ -278,10 +279,17 @@ async function initProject(args) {
|
|
|
278
279
|
console.log(`
|
|
279
280
|
BI Agent Superpowers v${VERSION}
|
|
280
281
|
================================
|
|
281
|
-
Claude Code
|
|
282
|
+
Claude Code local plugin setup
|
|
282
283
|
|
|
283
284
|
Initializing in: ${targetDir}
|
|
284
285
|
Skills available: ${skills.length}
|
|
286
|
+
|
|
287
|
+
This is not the multi-agent install path. For Codex, GitHub Copilot,
|
|
288
|
+
Gemini CLI, Kilo Code, and user-level Claude Code installs, run:
|
|
289
|
+
|
|
290
|
+
super install --all --yes
|
|
291
|
+
|
|
292
|
+
kickoff writes repo-local Claude Code plugin files only.
|
|
285
293
|
`);
|
|
286
294
|
|
|
287
295
|
if (dryRun) {
|
|
@@ -323,7 +331,7 @@ Skills available: ${skills.length}
|
|
|
323
331
|
}
|
|
324
332
|
|
|
325
333
|
/**
|
|
326
|
-
* `super recharge` — regenerate
|
|
334
|
+
* `super recharge` — regenerate an existing local Claude Code plugin without prompts.
|
|
327
335
|
*
|
|
328
336
|
* Re-reads the saved tool preferences from .bi-superpowers.json (or falls
|
|
329
337
|
* back to the default toolset) and regenerates everything. Useful after:
|
|
@@ -357,6 +365,23 @@ Regenerating configs from ${skills.length} skills...
|
|
|
357
365
|
}
|
|
358
366
|
}
|
|
359
367
|
|
|
368
|
+
if (!hasProjectLocalPlugin(targetDir)) {
|
|
369
|
+
console.log(`
|
|
370
|
+
This repo does not contain a local Claude Code plugin generated by super kickoff.
|
|
371
|
+
|
|
372
|
+
For Codex, GitHub Copilot, Gemini CLI, Kilo Code, and user-level Claude Code
|
|
373
|
+
installs, refresh the user-level install instead:
|
|
374
|
+
|
|
375
|
+
super install --all --yes
|
|
376
|
+
|
|
377
|
+
If you intentionally want repo-local Claude Code plugin files, run:
|
|
378
|
+
|
|
379
|
+
super kickoff
|
|
380
|
+
`);
|
|
381
|
+
process.exitCode = 2;
|
|
382
|
+
return;
|
|
383
|
+
}
|
|
384
|
+
|
|
360
385
|
const config = loadToolConfig(targetDir);
|
|
361
386
|
const selectedTools = ensurePluginTool(config.tools || [...DEFAULT_TOOLS]);
|
|
362
387
|
|
|
@@ -508,6 +533,13 @@ function loadToolConfig(targetDir) {
|
|
|
508
533
|
};
|
|
509
534
|
}
|
|
510
535
|
|
|
536
|
+
function hasProjectLocalPlugin(targetDir) {
|
|
537
|
+
return (
|
|
538
|
+
fs.existsSync(path.join(targetDir, CONFIG_FILE)) ||
|
|
539
|
+
fs.existsSync(path.join(targetDir, '.claude-plugin', 'plugin.json'))
|
|
540
|
+
);
|
|
541
|
+
}
|
|
542
|
+
|
|
511
543
|
/**
|
|
512
544
|
* Dispatch to the tool-specific generator.
|
|
513
545
|
*/
|
|
@@ -525,6 +557,10 @@ function showCompletionMessage(targetDir, tools, skillCount) {
|
|
|
525
557
|
|
|
526
558
|
Skills: ${skillCount} skills generated
|
|
527
559
|
|
|
560
|
+
Note: this is a repo-local Claude Code plugin only.
|
|
561
|
+
Codex, GitHub Copilot, Gemini CLI, Kilo Code, and user-level Claude Code
|
|
562
|
+
installs use: super install --all --yes
|
|
563
|
+
|
|
528
564
|
────────────────────────────────────────────────────────────
|
|
529
565
|
CLAUDE CODE
|
|
530
566
|
────────────────────────────────────────────────────────────
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* MCP Setup Command
|
|
3
3
|
* =================
|
|
4
|
-
* Configures the official Microsoft MCP servers for
|
|
5
|
-
* and legacy adapter formats.
|
|
4
|
+
* Configures the official Microsoft MCP servers for an existing project-local
|
|
5
|
+
* Claude Code plugin and legacy adapter formats.
|
|
6
6
|
*
|
|
7
7
|
* Usage:
|
|
8
8
|
* super mcp-setup
|
|
@@ -103,6 +103,13 @@ function loadConfiguredTools(targetDir) {
|
|
|
103
103
|
return ['claude-plugin'];
|
|
104
104
|
}
|
|
105
105
|
|
|
106
|
+
function hasLocalPluginMarker(targetDir) {
|
|
107
|
+
return (
|
|
108
|
+
fs.existsSync(path.join(targetDir, '.bi-superpowers.json')) ||
|
|
109
|
+
fs.existsSync(path.join(targetDir, '.claude-plugin', 'plugin.json'))
|
|
110
|
+
);
|
|
111
|
+
}
|
|
112
|
+
|
|
106
113
|
function readJson(filePath) {
|
|
107
114
|
if (!fs.existsSync(filePath)) {
|
|
108
115
|
return {};
|
|
@@ -157,8 +164,24 @@ function mcpSetupCommand(args, config) {
|
|
|
157
164
|
|
|
158
165
|
if (options.deprecatedFlags.length > 0) {
|
|
159
166
|
tui.warning(
|
|
160
|
-
`Deprecated flags ignored: ${options.deprecatedFlags.join(', ')}. MCP setup
|
|
167
|
+
`Deprecated flags ignored: ${options.deprecatedFlags.join(', ')}. MCP setup now targets local Claude Code plugin configs and uses the official Microsoft servers.`
|
|
168
|
+
);
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
if (!options.tool && !hasLocalPluginMarker(targetDir)) {
|
|
172
|
+
tui.warning('mcp-setup is only for project-local Claude Code plugin configs.');
|
|
173
|
+
tui.info(
|
|
174
|
+
'For Codex, GitHub Copilot, Gemini CLI, Kilo Code, and Claude Code user-level installs, run:'
|
|
175
|
+
);
|
|
176
|
+
tui.listItem('super install --all --yes');
|
|
177
|
+
tui.info(
|
|
178
|
+
'That writes user-level skills and MCP config under your home directory without creating files in this repo.'
|
|
179
|
+
);
|
|
180
|
+
tui.info(
|
|
181
|
+
'If you intentionally need a local Claude Code plugin, run `super kickoff` first or pass `--tool claude-plugin`.'
|
|
161
182
|
);
|
|
183
|
+
process.exitCode = 2;
|
|
184
|
+
return;
|
|
162
185
|
}
|
|
163
186
|
|
|
164
187
|
let configuredTools = loadConfiguredTools(targetDir);
|
package/bin/utils/mcp-detect.js
CHANGED
|
@@ -188,7 +188,7 @@ function getInstallInstructions() {
|
|
|
188
188
|
'Ir a Extensions (Ctrl+Shift+X)',
|
|
189
189
|
'Buscar "Power BI Modeling MCP"',
|
|
190
190
|
'Instalar la extensión de Microsoft',
|
|
191
|
-
'Ejecutar: super
|
|
191
|
+
'Ejecutar: super install --all --yes',
|
|
192
192
|
],
|
|
193
193
|
link: 'https://aka.ms/powerbi-modeling-mcp-vscode',
|
|
194
194
|
},
|
package/commands/bi-start.md
CHANGED
|
@@ -55,7 +55,7 @@ Interpret the single-line output:
|
|
|
55
55
|
```bash
|
|
56
56
|
super upgrade
|
|
57
57
|
```
|
|
58
|
-
|
|
58
|
+
After it finishes, remind: _"Corré `super install --all --yes` para refrescar la instalación user-level de todos los agentes. Solo si además mantenés un plugin local de Claude Code generado con `super kickoff`, corré `super recharge` dentro de ese repo."_
|
|
59
59
|
|
|
60
60
|
On `no` — respect it, continue to PHASE 1 silently. The update-state.json already tracks the user's snooze per `update-check.js` semantics.
|
|
61
61
|
|
|
@@ -86,7 +86,7 @@ Do these detections in order:
|
|
|
86
86
|
```
|
|
87
87
|
(or equivalent). `$pbiDesktopRunning = true` if present.
|
|
88
88
|
|
|
89
|
-
4. **MCP configured**: look for
|
|
89
|
+
4. **MCP configured**: look first for `powerbi-modeling-mcp` in the agent's user-level config file (`~/.claude.json`, `~/.codex/config.toml`, etc). Only check project-root `.mcp.json` when the user explicitly says they use a local Claude Code plugin. Keep the check shallow — no need to deep-diff.
|
|
90
90
|
|
|
91
91
|
### Emit the context in 3-4 lines max
|
|
92
92
|
|
|
@@ -180,7 +180,7 @@ Stop. Don't hover. The user will tell you what they want next.
|
|
|
180
180
|
- **Project analysis or setup**: that's `/project-kickoff`. If the user says "analizar mi proyecto", "armar el modelo base", "arrancar uno nuevo desde cero", delegate.
|
|
181
181
|
- **MCP wiring details**: that's `/pbi-connect`. bi-start just offers to dispatch it; the actual configuration work is in that skill.
|
|
182
182
|
- **Report authoring**: that's `/report-design`. Same pattern.
|
|
183
|
-
- **Running the update**: bi-start offers + dispatches `super upgrade`; the actual refresh path after eso (`/plugin update bi-superpowers`, `super install --yes`, o `super recharge`) is owned by `/bin/cli.js`.
|
|
183
|
+
- **Running the update**: bi-start offers + dispatches `super upgrade`; the actual refresh path after eso (`/plugin update bi-superpowers`, `super install --all --yes`, o `super recharge` only for local Claude Code plugins) is owned by `/bin/cli.js`.
|
|
184
184
|
|
|
185
185
|
## Related Skills
|
|
186
186
|
|
package/commands/pbi-connect.md
CHANGED
|
@@ -36,10 +36,10 @@ Activate this skill when user mentions:
|
|
|
36
36
|
- "can't connect to Power BI", "connection error", "MCP not working"
|
|
37
37
|
|
|
38
38
|
## Identity
|
|
39
|
-
You are a **Power BI MCP Connection Specialist**. Your job is to help the user connect their AI agent to Power BI Desktop using the official Microsoft MCP servers shipped with bi-superpowers, with a
|
|
39
|
+
You are a **Power BI MCP Connection Specialist**. Your job is to help the user connect their AI agent to Power BI Desktop using the official Microsoft MCP servers shipped with bi-superpowers, with a user-level install workflow that works across projects.
|
|
40
40
|
|
|
41
41
|
## MANDATORY RULES
|
|
42
|
-
1. **
|
|
42
|
+
1. **USER-LEVEL FIRST.** Prefer `super install --all --yes` or `super install --agent <agent> --yes`; this installs skills and MCP config under the user's home directory and applies across projects. `.mcp.json` is only for an optional repo-local Claude Code plugin.
|
|
43
43
|
2. **OFFICIAL SERVERS ONLY.** Use `powerbi-modeling-mcp` (local) and `microsoft-learn` (HTTP). Do not invent or recommend unofficial MCPs.
|
|
44
44
|
3. **WINDOWS LIMITATION.** Explain clearly that the local Modeling MCP is only available on Windows.
|
|
45
45
|
4. **NO PORT INVENTION.** Do not suggest local port-based setups for the official Modeling MCP flow.
|
|
@@ -60,7 +60,8 @@ I'll help you connect your AI agent using the official Microsoft MCP servers.
|
|
|
60
60
|
What do you need?
|
|
61
61
|
|
|
62
62
|
1. Connect to Power BI Desktop on this machine (Windows)
|
|
63
|
-
2. Verify that my
|
|
63
|
+
2. Verify that my agent MCP config is installed correctly
|
|
64
|
+
3. Verify an optional local Claude Code plugin `.mcp.json`
|
|
64
65
|
```
|
|
65
66
|
|
|
66
67
|
---
|
|
@@ -83,11 +84,21 @@ Before we continue:
|
|
|
83
84
|
|
|
84
85
|
### If the user is on Windows and installed the extension
|
|
85
86
|
|
|
86
|
-
Guide them to:
|
|
87
|
+
Guide them to the user-level install:
|
|
87
88
|
|
|
88
|
-
1. Run `
|
|
89
|
-
2. Confirm
|
|
90
|
-
3. Restart or refresh
|
|
89
|
+
1. Run `super install --all --yes`, or for one agent run `super install --agent codex --yes` / `super install --agent claude-code --yes` / etc.
|
|
90
|
+
2. Confirm the agent config contains `powerbi-modeling-mcp` and `microsoft-learn`.
|
|
91
|
+
3. Restart or refresh the AI agent so it reloads skills and MCP servers.
|
|
92
|
+
|
|
93
|
+
Use these config locations:
|
|
94
|
+
|
|
95
|
+
| Agent | Skill path | MCP config |
|
|
96
|
+
| --- | --- | --- |
|
|
97
|
+
| Claude Code | `~/.claude/skills` or `~/.agents/skills` | `~/.claude.json` |
|
|
98
|
+
| GitHub Copilot | `~/.copilot/skills` | `~/.copilot/mcp-config.json` |
|
|
99
|
+
| Codex | `~/.agents/skills` | `~/.codex/config.toml` |
|
|
100
|
+
| Gemini CLI | `~/.gemini/skills` | `~/.gemini/settings.json` |
|
|
101
|
+
| Kilo Code | `~/.kilo/skills` | `~/.kilo/mcp_settings.json` |
|
|
91
102
|
|
|
92
103
|
Use this explanation:
|
|
93
104
|
|
|
@@ -99,18 +110,13 @@ and starts it with `--start`.
|
|
|
99
110
|
|
|
100
111
|
If the user wants a config example, show:
|
|
101
112
|
|
|
102
|
-
```
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
"microsoft-learn": {
|
|
110
|
-
"type": "http",
|
|
111
|
-
"url": "https://learn.microsoft.com/api/mcp"
|
|
112
|
-
}
|
|
113
|
-
}
|
|
113
|
+
```toml
|
|
114
|
+
[mcp_servers.powerbi-modeling-mcp]
|
|
115
|
+
command = "node"
|
|
116
|
+
args = ["<package-dir>/bin/mcp/powerbi-modeling-launcher.js"]
|
|
117
|
+
|
|
118
|
+
[mcp_servers.microsoft-learn]
|
|
119
|
+
url = "https://learn.microsoft.com/api/mcp"
|
|
114
120
|
```
|
|
115
121
|
|
|
116
122
|
### If the user installed the executable manually
|
|
@@ -124,9 +130,11 @@ BI_SUPERPOWERS_POWERBI_MODELING_MCP_PATH
|
|
|
124
130
|
Then re-run:
|
|
125
131
|
|
|
126
132
|
```bash
|
|
127
|
-
super
|
|
133
|
+
super install --all --yes
|
|
128
134
|
```
|
|
129
135
|
|
|
136
|
+
If they are intentionally maintaining a repo-local Claude Code plugin, they can run `super mcp-setup` inside that plugin project instead.
|
|
137
|
+
|
|
130
138
|
### If the user is on macOS or Linux
|
|
131
139
|
|
|
132
140
|
Say:
|
|
@@ -141,15 +149,41 @@ For live editing of a local semantic model, you need a Windows environment.
|
|
|
141
149
|
|
|
142
150
|
---
|
|
143
151
|
|
|
144
|
-
## PHASE 2: Verify
|
|
152
|
+
## PHASE 2: Verify Agent MCP Config
|
|
145
153
|
|
|
146
154
|
If the user chooses option 2:
|
|
147
155
|
|
|
156
|
+
Check the config for the agent they use:
|
|
157
|
+
|
|
158
|
+
- Claude Code: `~/.claude.json`
|
|
159
|
+
- GitHub Copilot: `~/.copilot/mcp-config.json`
|
|
160
|
+
- Codex: `~/.codex/config.toml`
|
|
161
|
+
- Gemini CLI: `~/.gemini/settings.json`
|
|
162
|
+
- Kilo Code: `~/.kilo/mcp_settings.json`
|
|
163
|
+
|
|
164
|
+
Confirm:
|
|
165
|
+
|
|
166
|
+
- skills are installed under the agent's user-level skill directory
|
|
167
|
+
- config includes `powerbi-modeling-mcp`
|
|
168
|
+
- config includes `microsoft-learn`
|
|
169
|
+
|
|
170
|
+
If anything is missing, recommend:
|
|
171
|
+
|
|
172
|
+
```bash
|
|
173
|
+
super install --agent <agent-id> --yes
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
Then restart or refresh the agent.
|
|
177
|
+
|
|
178
|
+
## PHASE 3: Verify Optional Local Claude Code Plugin Config
|
|
179
|
+
|
|
180
|
+
If the user chooses option 3, or explicitly says they use `super kickoff` / `claude --plugin-dir`:
|
|
181
|
+
|
|
148
182
|
Check these files in order:
|
|
149
183
|
|
|
150
184
|
1. `.claude-plugin/plugin.json`
|
|
151
185
|
2. `.mcp.json`
|
|
152
|
-
3. `.bi-superpowers.json`
|
|
186
|
+
3. `.bi-superpowers.json`
|
|
153
187
|
|
|
154
188
|
Confirm:
|
|
155
189
|
|
|
@@ -178,7 +212,8 @@ claude --plugin-dir .
|
|
|
178
212
|
| --- | --- |
|
|
179
213
|
| Modeling MCP missing on Windows | Install the Microsoft extension in VS Code or Cursor |
|
|
180
214
|
| Modeling MCP installed manually | Set `BI_SUPERPOWERS_POWERBI_MODELING_MCP_PATH` |
|
|
181
|
-
|
|
|
215
|
+
| Agent not loading MCPs | Re-run `super install --agent <agent-id> --yes` and restart the agent |
|
|
216
|
+
| Local Claude Code plugin not loading MCPs | Re-run `super mcp-setup` inside the plugin project and restart Claude Code |
|
|
182
217
|
| macOS/Linux local modeling request | Use `microsoft-learn` for docs; live editing requires Windows |
|
|
183
218
|
| User asks about Excel MCP | Explain Excel remains supported through skills and library content, not a default MCP |
|
|
184
219
|
|
|
@@ -190,7 +225,8 @@ claude --plugin-dir .
|
|
|
190
225
|
| --- | --- | --- |
|
|
191
226
|
| Recommend `uvx` for Modeling MCP | Not the official Microsoft installation path | Use the official executable via the local launcher |
|
|
192
227
|
| Ask the user to find a localhost port | Not required in the new flow | Use the official Modeling MCP launcher |
|
|
193
|
-
|
|
|
228
|
+
| Run `super kickoff` for Codex/GitHub Copilot/Gemini/Kilo setup | `kickoff` creates repo-local Claude Code plugin files | Use `super install --agent <agent-id> --yes` |
|
|
229
|
+
| Treat `.mcp.json` as the default install target | It is only for optional local Claude Code plugins | Use the agent's user-level MCP config |
|
|
194
230
|
| Invent unofficial MCPs (remote, fabric, etc.) | This plugin only ships 2 official MCPs | Only use the 2 official MCPs we ship (`powerbi-modeling-mcp` and `microsoft-learn`) |
|
|
195
231
|
|
|
196
232
|
---
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@luquimbo/bi-superpowers",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.4",
|
|
4
4
|
"description": "Open-source Power BI Desktop toolkit for Claude Code, GitHub Copilot, Codex, Gemini CLI, and Kilo Code. Ships 4 skills and 2 official Microsoft MCP servers.",
|
|
5
5
|
"main": "bin/cli.js",
|
|
6
6
|
"bin": {
|
package/skills/bi-start/SKILL.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: "bi-start"
|
|
3
3
|
description: "Use when the user asks about BI Start Skill, especially phrases like \"bi-start\", \"bi start\", \"/bi-start\", \"empezar\", \"comenzar\", \"arranco\"."
|
|
4
|
-
version: "4.1.
|
|
4
|
+
version: "4.1.4"
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
<!-- Generated by BI Agent Superpowers. Edit src/content/skills/bi-start.md instead. -->
|
|
@@ -57,7 +57,7 @@ Interpret the single-line output:
|
|
|
57
57
|
```bash
|
|
58
58
|
super upgrade
|
|
59
59
|
```
|
|
60
|
-
|
|
60
|
+
After it finishes, remind: _"Corré `super install --all --yes` para refrescar la instalación user-level de todos los agentes. Solo si además mantenés un plugin local de Claude Code generado con `super kickoff`, corré `super recharge` dentro de ese repo."_
|
|
61
61
|
|
|
62
62
|
On `no` — respect it, continue to PHASE 1 silently. The update-state.json already tracks the user's snooze per `update-check.js` semantics.
|
|
63
63
|
|
|
@@ -88,7 +88,7 @@ Do these detections in order:
|
|
|
88
88
|
```
|
|
89
89
|
(or equivalent). `$pbiDesktopRunning = true` if present.
|
|
90
90
|
|
|
91
|
-
4. **MCP configured**: look for
|
|
91
|
+
4. **MCP configured**: look first for `powerbi-modeling-mcp` in the agent's user-level config file (`~/.claude.json`, `~/.codex/config.toml`, etc). Only check project-root `.mcp.json` when the user explicitly says they use a local Claude Code plugin. Keep the check shallow — no need to deep-diff.
|
|
92
92
|
|
|
93
93
|
### Emit the context in 3-4 lines max
|
|
94
94
|
|
|
@@ -182,7 +182,7 @@ Stop. Don't hover. The user will tell you what they want next.
|
|
|
182
182
|
- **Project analysis or setup**: that's `/project-kickoff`. If the user says "analizar mi proyecto", "armar el modelo base", "arrancar uno nuevo desde cero", delegate.
|
|
183
183
|
- **MCP wiring details**: that's `/pbi-connect`. bi-start just offers to dispatch it; the actual configuration work is in that skill.
|
|
184
184
|
- **Report authoring**: that's `/report-design`. Same pattern.
|
|
185
|
-
- **Running the update**: bi-start offers + dispatches `super upgrade`; the actual refresh path after eso (`/plugin update bi-superpowers`, `super install --yes`, o `super recharge`) is owned by `/bin/cli.js`.
|
|
185
|
+
- **Running the update**: bi-start offers + dispatches `super upgrade`; the actual refresh path after eso (`/plugin update bi-superpowers`, `super install --all --yes`, o `super recharge` only for local Claude Code plugins) is owned by `/bin/cli.js`.
|
|
186
186
|
|
|
187
187
|
## Related Skills
|
|
188
188
|
|
|
@@ -47,7 +47,7 @@ const HTTPS_TIMEOUT_MS = 5000;
|
|
|
47
47
|
// Rewritten at generation time when this helper is copied into
|
|
48
48
|
// `skills/<name>/scripts/update-check.js`. In the canonical source under
|
|
49
49
|
// `bin/commands/`, it stays null and we fall back to package.json.
|
|
50
|
-
const BUNDLED_INSTALLED_VERSION = "4.1.
|
|
50
|
+
const BUNDLED_INSTALLED_VERSION = "4.1.4";
|
|
51
51
|
|
|
52
52
|
// ---------------------------------------------------------------------------
|
|
53
53
|
// Argument parsing
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: "pbi-connect"
|
|
3
3
|
description: "Use when the user asks about Power BI MCP Connection Skill, especially phrases like \"connect Power BI\", \"PBI connection\", \"MCP connection\", \"Power BI MCP\", \"modeling mcp\", \"Power BI Modeling MCP\"."
|
|
4
|
-
version: "4.1.
|
|
4
|
+
version: "4.1.4"
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
<!-- Generated by BI Agent Superpowers. Edit src/content/skills/pbi-connect.md instead. -->
|
|
@@ -38,10 +38,10 @@ Activate this skill when user mentions:
|
|
|
38
38
|
- "can't connect to Power BI", "connection error", "MCP not working"
|
|
39
39
|
|
|
40
40
|
## Identity
|
|
41
|
-
You are a **Power BI MCP Connection Specialist**. Your job is to help the user connect their AI agent to Power BI Desktop using the official Microsoft MCP servers shipped with bi-superpowers, with a
|
|
41
|
+
You are a **Power BI MCP Connection Specialist**. Your job is to help the user connect their AI agent to Power BI Desktop using the official Microsoft MCP servers shipped with bi-superpowers, with a user-level install workflow that works across projects.
|
|
42
42
|
|
|
43
43
|
## MANDATORY RULES
|
|
44
|
-
1. **
|
|
44
|
+
1. **USER-LEVEL FIRST.** Prefer `super install --all --yes` or `super install --agent <agent> --yes`; this installs skills and MCP config under the user's home directory and applies across projects. `.mcp.json` is only for an optional repo-local Claude Code plugin.
|
|
45
45
|
2. **OFFICIAL SERVERS ONLY.** Use `powerbi-modeling-mcp` (local) and `microsoft-learn` (HTTP). Do not invent or recommend unofficial MCPs.
|
|
46
46
|
3. **WINDOWS LIMITATION.** Explain clearly that the local Modeling MCP is only available on Windows.
|
|
47
47
|
4. **NO PORT INVENTION.** Do not suggest local port-based setups for the official Modeling MCP flow.
|
|
@@ -62,7 +62,8 @@ I'll help you connect your AI agent using the official Microsoft MCP servers.
|
|
|
62
62
|
What do you need?
|
|
63
63
|
|
|
64
64
|
1. Connect to Power BI Desktop on this machine (Windows)
|
|
65
|
-
2. Verify that my
|
|
65
|
+
2. Verify that my agent MCP config is installed correctly
|
|
66
|
+
3. Verify an optional local Claude Code plugin `.mcp.json`
|
|
66
67
|
```
|
|
67
68
|
|
|
68
69
|
---
|
|
@@ -85,11 +86,21 @@ Before we continue:
|
|
|
85
86
|
|
|
86
87
|
### If the user is on Windows and installed the extension
|
|
87
88
|
|
|
88
|
-
Guide them to:
|
|
89
|
+
Guide them to the user-level install:
|
|
89
90
|
|
|
90
|
-
1. Run `
|
|
91
|
-
2. Confirm
|
|
92
|
-
3. Restart or refresh
|
|
91
|
+
1. Run `super install --all --yes`, or for one agent run `super install --agent codex --yes` / `super install --agent claude-code --yes` / etc.
|
|
92
|
+
2. Confirm the agent config contains `powerbi-modeling-mcp` and `microsoft-learn`.
|
|
93
|
+
3. Restart or refresh the AI agent so it reloads skills and MCP servers.
|
|
94
|
+
|
|
95
|
+
Use these config locations:
|
|
96
|
+
|
|
97
|
+
| Agent | Skill path | MCP config |
|
|
98
|
+
| --- | --- | --- |
|
|
99
|
+
| Claude Code | `~/.claude/skills` or `~/.agents/skills` | `~/.claude.json` |
|
|
100
|
+
| GitHub Copilot | `~/.copilot/skills` | `~/.copilot/mcp-config.json` |
|
|
101
|
+
| Codex | `~/.agents/skills` | `~/.codex/config.toml` |
|
|
102
|
+
| Gemini CLI | `~/.gemini/skills` | `~/.gemini/settings.json` |
|
|
103
|
+
| Kilo Code | `~/.kilo/skills` | `~/.kilo/mcp_settings.json` |
|
|
93
104
|
|
|
94
105
|
Use this explanation:
|
|
95
106
|
|
|
@@ -101,18 +112,13 @@ and starts it with `--start`.
|
|
|
101
112
|
|
|
102
113
|
If the user wants a config example, show:
|
|
103
114
|
|
|
104
|
-
```
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
"microsoft-learn": {
|
|
112
|
-
"type": "http",
|
|
113
|
-
"url": "https://learn.microsoft.com/api/mcp"
|
|
114
|
-
}
|
|
115
|
-
}
|
|
115
|
+
```toml
|
|
116
|
+
[mcp_servers.powerbi-modeling-mcp]
|
|
117
|
+
command = "node"
|
|
118
|
+
args = ["<package-dir>/bin/mcp/powerbi-modeling-launcher.js"]
|
|
119
|
+
|
|
120
|
+
[mcp_servers.microsoft-learn]
|
|
121
|
+
url = "https://learn.microsoft.com/api/mcp"
|
|
116
122
|
```
|
|
117
123
|
|
|
118
124
|
### If the user installed the executable manually
|
|
@@ -126,9 +132,11 @@ BI_SUPERPOWERS_POWERBI_MODELING_MCP_PATH
|
|
|
126
132
|
Then re-run:
|
|
127
133
|
|
|
128
134
|
```bash
|
|
129
|
-
super
|
|
135
|
+
super install --all --yes
|
|
130
136
|
```
|
|
131
137
|
|
|
138
|
+
If they are intentionally maintaining a repo-local Claude Code plugin, they can run `super mcp-setup` inside that plugin project instead.
|
|
139
|
+
|
|
132
140
|
### If the user is on macOS or Linux
|
|
133
141
|
|
|
134
142
|
Say:
|
|
@@ -143,15 +151,41 @@ For live editing of a local semantic model, you need a Windows environment.
|
|
|
143
151
|
|
|
144
152
|
---
|
|
145
153
|
|
|
146
|
-
## PHASE 2: Verify
|
|
154
|
+
## PHASE 2: Verify Agent MCP Config
|
|
147
155
|
|
|
148
156
|
If the user chooses option 2:
|
|
149
157
|
|
|
158
|
+
Check the config for the agent they use:
|
|
159
|
+
|
|
160
|
+
- Claude Code: `~/.claude.json`
|
|
161
|
+
- GitHub Copilot: `~/.copilot/mcp-config.json`
|
|
162
|
+
- Codex: `~/.codex/config.toml`
|
|
163
|
+
- Gemini CLI: `~/.gemini/settings.json`
|
|
164
|
+
- Kilo Code: `~/.kilo/mcp_settings.json`
|
|
165
|
+
|
|
166
|
+
Confirm:
|
|
167
|
+
|
|
168
|
+
- skills are installed under the agent's user-level skill directory
|
|
169
|
+
- config includes `powerbi-modeling-mcp`
|
|
170
|
+
- config includes `microsoft-learn`
|
|
171
|
+
|
|
172
|
+
If anything is missing, recommend:
|
|
173
|
+
|
|
174
|
+
```bash
|
|
175
|
+
super install --agent <agent-id> --yes
|
|
176
|
+
```
|
|
177
|
+
|
|
178
|
+
Then restart or refresh the agent.
|
|
179
|
+
|
|
180
|
+
## PHASE 3: Verify Optional Local Claude Code Plugin Config
|
|
181
|
+
|
|
182
|
+
If the user chooses option 3, or explicitly says they use `super kickoff` / `claude --plugin-dir`:
|
|
183
|
+
|
|
150
184
|
Check these files in order:
|
|
151
185
|
|
|
152
186
|
1. `.claude-plugin/plugin.json`
|
|
153
187
|
2. `.mcp.json`
|
|
154
|
-
3. `.bi-superpowers.json`
|
|
188
|
+
3. `.bi-superpowers.json`
|
|
155
189
|
|
|
156
190
|
Confirm:
|
|
157
191
|
|
|
@@ -180,7 +214,8 @@ claude --plugin-dir .
|
|
|
180
214
|
| --- | --- |
|
|
181
215
|
| Modeling MCP missing on Windows | Install the Microsoft extension in VS Code or Cursor |
|
|
182
216
|
| Modeling MCP installed manually | Set `BI_SUPERPOWERS_POWERBI_MODELING_MCP_PATH` |
|
|
183
|
-
|
|
|
217
|
+
| Agent not loading MCPs | Re-run `super install --agent <agent-id> --yes` and restart the agent |
|
|
218
|
+
| Local Claude Code plugin not loading MCPs | Re-run `super mcp-setup` inside the plugin project and restart Claude Code |
|
|
184
219
|
| macOS/Linux local modeling request | Use `microsoft-learn` for docs; live editing requires Windows |
|
|
185
220
|
| User asks about Excel MCP | Explain Excel remains supported through skills and library content, not a default MCP |
|
|
186
221
|
|
|
@@ -192,7 +227,8 @@ claude --plugin-dir .
|
|
|
192
227
|
| --- | --- | --- |
|
|
193
228
|
| Recommend `uvx` for Modeling MCP | Not the official Microsoft installation path | Use the official executable via the local launcher |
|
|
194
229
|
| Ask the user to find a localhost port | Not required in the new flow | Use the official Modeling MCP launcher |
|
|
195
|
-
|
|
|
230
|
+
| Run `super kickoff` for Codex/GitHub Copilot/Gemini/Kilo setup | `kickoff` creates repo-local Claude Code plugin files | Use `super install --agent <agent-id> --yes` |
|
|
231
|
+
| Treat `.mcp.json` as the default install target | It is only for optional local Claude Code plugins | Use the agent's user-level MCP config |
|
|
196
232
|
| Invent unofficial MCPs (remote, fabric, etc.) | This plugin only ships 2 official MCPs | Only use the 2 official MCPs we ship (`powerbi-modeling-mcp` and `microsoft-learn`) |
|
|
197
233
|
|
|
198
234
|
---
|
|
@@ -47,7 +47,7 @@ const HTTPS_TIMEOUT_MS = 5000;
|
|
|
47
47
|
// Rewritten at generation time when this helper is copied into
|
|
48
48
|
// `skills/<name>/scripts/update-check.js`. In the canonical source under
|
|
49
49
|
// `bin/commands/`, it stays null and we fall back to package.json.
|
|
50
|
-
const BUNDLED_INSTALLED_VERSION = "4.1.
|
|
50
|
+
const BUNDLED_INSTALLED_VERSION = "4.1.4";
|
|
51
51
|
|
|
52
52
|
// ---------------------------------------------------------------------------
|
|
53
53
|
// Argument parsing
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: "project-kickoff"
|
|
3
3
|
description: "Use when the user asks about Project Kickoff Skill, especially phrases like \"I'm starting a brand-new BI project from scratch\", \"analizar proyecto\", \"analyze project\", \"project kickoff\", \"nuevo proyecto\", \"new project\"."
|
|
4
|
-
version: "4.1.
|
|
4
|
+
version: "4.1.4"
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
<!-- Generated by BI Agent Superpowers. Edit src/content/skills/project-kickoff.md instead. -->
|
|
@@ -47,7 +47,7 @@ const HTTPS_TIMEOUT_MS = 5000;
|
|
|
47
47
|
// Rewritten at generation time when this helper is copied into
|
|
48
48
|
// `skills/<name>/scripts/update-check.js`. In the canonical source under
|
|
49
49
|
// `bin/commands/`, it stays null and we fall back to package.json.
|
|
50
|
-
const BUNDLED_INSTALLED_VERSION = "4.1.
|
|
50
|
+
const BUNDLED_INSTALLED_VERSION = "4.1.4";
|
|
51
51
|
|
|
52
52
|
// ---------------------------------------------------------------------------
|
|
53
53
|
// Argument parsing
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: "report-design"
|
|
3
3
|
description: "Use when the user asks about Report Design Skill, especially phrases like \"crear reportes\", \"armar el reporte\", \"diseñar reporte\", \"report design\", \"create reports\", \"build dashboard\"."
|
|
4
|
-
version: "4.1.
|
|
4
|
+
version: "4.1.4"
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
<!-- Generated by BI Agent Superpowers. Edit src/content/skills/report-design.md instead. -->
|
|
@@ -47,7 +47,7 @@ const HTTPS_TIMEOUT_MS = 5000;
|
|
|
47
47
|
// Rewritten at generation time when this helper is copied into
|
|
48
48
|
// `skills/<name>/scripts/update-check.js`. In the canonical source under
|
|
49
49
|
// `bin/commands/`, it stays null and we fall back to package.json.
|
|
50
|
-
const BUNDLED_INSTALLED_VERSION = "4.1.
|
|
50
|
+
const BUNDLED_INSTALLED_VERSION = "4.1.4";
|
|
51
51
|
|
|
52
52
|
// ---------------------------------------------------------------------------
|
|
53
53
|
// Argument parsing
|
package/src/content/base.md
CHANGED
|
@@ -142,7 +142,7 @@ AI Assistant → microsoft-learn HTTP MCP → learn.microsoft.com docs
|
|
|
142
142
|
|
|
143
143
|
### Practical guidance
|
|
144
144
|
|
|
145
|
-
- Prefer `.mcp.json`
|
|
145
|
+
- Prefer user-level agent MCP config files written by `super install`. Use project-root `.mcp.json` only when the user explicitly uses an optional local Claude Code plugin.
|
|
146
146
|
- Never invent or hardcode local ports for the official Modeling MCP flow.
|
|
147
147
|
- On macOS/Linux, explain that the local Modeling MCP is unavailable and fall back to `microsoft-learn` for docs. Live editing of a local model requires Windows.
|
|
148
148
|
|
package/src/content/routing.md
CHANGED
|
@@ -52,7 +52,7 @@ Scan current directory for relevant files:
|
|
|
52
52
|
|----------------|-----------------|
|
|
53
53
|
| `.pbix` / `.pbip` / `.tmdl` files | `/project-kickoff` (if not analyzed) |
|
|
54
54
|
| `.xlsx` / `.xlsm` files | `/project-kickoff` |
|
|
55
|
-
|
|
|
55
|
+
| Agent MCP config missing when user asks about Power BI | `/pbi-connect` |
|
|
56
56
|
|
|
57
57
|
### 4. CHECK KEYWORDS
|
|
58
58
|
|
|
@@ -49,7 +49,7 @@ Interpret the single-line output:
|
|
|
49
49
|
```bash
|
|
50
50
|
super upgrade
|
|
51
51
|
```
|
|
52
|
-
|
|
52
|
+
After it finishes, remind: _"Corré `super install --all --yes` para refrescar la instalación user-level de todos los agentes. Solo si además mantenés un plugin local de Claude Code generado con `super kickoff`, corré `super recharge` dentro de ese repo."_
|
|
53
53
|
|
|
54
54
|
On `no` — respect it, continue to PHASE 1 silently. The update-state.json already tracks the user's snooze per `update-check.js` semantics.
|
|
55
55
|
|
|
@@ -80,7 +80,7 @@ Do these detections in order:
|
|
|
80
80
|
```
|
|
81
81
|
(or equivalent). `$pbiDesktopRunning = true` if present.
|
|
82
82
|
|
|
83
|
-
4. **MCP configured**: look for
|
|
83
|
+
4. **MCP configured**: look first for `powerbi-modeling-mcp` in the agent's user-level config file (`~/.claude.json`, `~/.codex/config.toml`, etc). Only check project-root `.mcp.json` when the user explicitly says they use a local Claude Code plugin. Keep the check shallow — no need to deep-diff.
|
|
84
84
|
|
|
85
85
|
### Emit the context in 3-4 lines max
|
|
86
86
|
|
|
@@ -174,7 +174,7 @@ Stop. Don't hover. The user will tell you what they want next.
|
|
|
174
174
|
- **Project analysis or setup**: that's `/project-kickoff`. If the user says "analizar mi proyecto", "armar el modelo base", "arrancar uno nuevo desde cero", delegate.
|
|
175
175
|
- **MCP wiring details**: that's `/pbi-connect`. bi-start just offers to dispatch it; the actual configuration work is in that skill.
|
|
176
176
|
- **Report authoring**: that's `/report-design`. Same pattern.
|
|
177
|
-
- **Running the update**: bi-start offers + dispatches `super upgrade`; the actual refresh path after eso (`/plugin update bi-superpowers`, `super install --yes`, o `super recharge`) is owned by `/bin/cli.js`.
|
|
177
|
+
- **Running the update**: bi-start offers + dispatches `super upgrade`; the actual refresh path after eso (`/plugin update bi-superpowers`, `super install --all --yes`, o `super recharge` only for local Claude Code plugins) is owned by `/bin/cli.js`.
|
|
178
178
|
|
|
179
179
|
## Related Skills
|
|
180
180
|
|
|
@@ -9,10 +9,10 @@ Activate this skill when user mentions:
|
|
|
9
9
|
- "can't connect to Power BI", "connection error", "MCP not working"
|
|
10
10
|
|
|
11
11
|
## Identity
|
|
12
|
-
You are a **Power BI MCP Connection Specialist**. Your job is to help the user connect their AI agent to Power BI Desktop using the official Microsoft MCP servers shipped with bi-superpowers, with a
|
|
12
|
+
You are a **Power BI MCP Connection Specialist**. Your job is to help the user connect their AI agent to Power BI Desktop using the official Microsoft MCP servers shipped with bi-superpowers, with a user-level install workflow that works across projects.
|
|
13
13
|
|
|
14
14
|
## MANDATORY RULES
|
|
15
|
-
1. **
|
|
15
|
+
1. **USER-LEVEL FIRST.** Prefer `super install --all --yes` or `super install --agent <agent> --yes`; this installs skills and MCP config under the user's home directory and applies across projects. `.mcp.json` is only for an optional repo-local Claude Code plugin.
|
|
16
16
|
2. **OFFICIAL SERVERS ONLY.** Use `powerbi-modeling-mcp` (local) and `microsoft-learn` (HTTP). Do not invent or recommend unofficial MCPs.
|
|
17
17
|
3. **WINDOWS LIMITATION.** Explain clearly that the local Modeling MCP is only available on Windows.
|
|
18
18
|
4. **NO PORT INVENTION.** Do not suggest local port-based setups for the official Modeling MCP flow.
|
|
@@ -33,7 +33,8 @@ I'll help you connect your AI agent using the official Microsoft MCP servers.
|
|
|
33
33
|
What do you need?
|
|
34
34
|
|
|
35
35
|
1. Connect to Power BI Desktop on this machine (Windows)
|
|
36
|
-
2. Verify that my
|
|
36
|
+
2. Verify that my agent MCP config is installed correctly
|
|
37
|
+
3. Verify an optional local Claude Code plugin `.mcp.json`
|
|
37
38
|
```
|
|
38
39
|
|
|
39
40
|
---
|
|
@@ -56,11 +57,21 @@ Before we continue:
|
|
|
56
57
|
|
|
57
58
|
### If the user is on Windows and installed the extension
|
|
58
59
|
|
|
59
|
-
Guide them to:
|
|
60
|
+
Guide them to the user-level install:
|
|
60
61
|
|
|
61
|
-
1. Run `
|
|
62
|
-
2. Confirm
|
|
63
|
-
3. Restart or refresh
|
|
62
|
+
1. Run `super install --all --yes`, or for one agent run `super install --agent codex --yes` / `super install --agent claude-code --yes` / etc.
|
|
63
|
+
2. Confirm the agent config contains `powerbi-modeling-mcp` and `microsoft-learn`.
|
|
64
|
+
3. Restart or refresh the AI agent so it reloads skills and MCP servers.
|
|
65
|
+
|
|
66
|
+
Use these config locations:
|
|
67
|
+
|
|
68
|
+
| Agent | Skill path | MCP config |
|
|
69
|
+
| --- | --- | --- |
|
|
70
|
+
| Claude Code | `~/.claude/skills` or `~/.agents/skills` | `~/.claude.json` |
|
|
71
|
+
| GitHub Copilot | `~/.copilot/skills` | `~/.copilot/mcp-config.json` |
|
|
72
|
+
| Codex | `~/.agents/skills` | `~/.codex/config.toml` |
|
|
73
|
+
| Gemini CLI | `~/.gemini/skills` | `~/.gemini/settings.json` |
|
|
74
|
+
| Kilo Code | `~/.kilo/skills` | `~/.kilo/mcp_settings.json` |
|
|
64
75
|
|
|
65
76
|
Use this explanation:
|
|
66
77
|
|
|
@@ -72,18 +83,13 @@ and starts it with `--start`.
|
|
|
72
83
|
|
|
73
84
|
If the user wants a config example, show:
|
|
74
85
|
|
|
75
|
-
```
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
"microsoft-learn": {
|
|
83
|
-
"type": "http",
|
|
84
|
-
"url": "https://learn.microsoft.com/api/mcp"
|
|
85
|
-
}
|
|
86
|
-
}
|
|
86
|
+
```toml
|
|
87
|
+
[mcp_servers.powerbi-modeling-mcp]
|
|
88
|
+
command = "node"
|
|
89
|
+
args = ["<package-dir>/bin/mcp/powerbi-modeling-launcher.js"]
|
|
90
|
+
|
|
91
|
+
[mcp_servers.microsoft-learn]
|
|
92
|
+
url = "https://learn.microsoft.com/api/mcp"
|
|
87
93
|
```
|
|
88
94
|
|
|
89
95
|
### If the user installed the executable manually
|
|
@@ -97,9 +103,11 @@ BI_SUPERPOWERS_POWERBI_MODELING_MCP_PATH
|
|
|
97
103
|
Then re-run:
|
|
98
104
|
|
|
99
105
|
```bash
|
|
100
|
-
super
|
|
106
|
+
super install --all --yes
|
|
101
107
|
```
|
|
102
108
|
|
|
109
|
+
If they are intentionally maintaining a repo-local Claude Code plugin, they can run `super mcp-setup` inside that plugin project instead.
|
|
110
|
+
|
|
103
111
|
### If the user is on macOS or Linux
|
|
104
112
|
|
|
105
113
|
Say:
|
|
@@ -114,15 +122,41 @@ For live editing of a local semantic model, you need a Windows environment.
|
|
|
114
122
|
|
|
115
123
|
---
|
|
116
124
|
|
|
117
|
-
## PHASE 2: Verify
|
|
125
|
+
## PHASE 2: Verify Agent MCP Config
|
|
118
126
|
|
|
119
127
|
If the user chooses option 2:
|
|
120
128
|
|
|
129
|
+
Check the config for the agent they use:
|
|
130
|
+
|
|
131
|
+
- Claude Code: `~/.claude.json`
|
|
132
|
+
- GitHub Copilot: `~/.copilot/mcp-config.json`
|
|
133
|
+
- Codex: `~/.codex/config.toml`
|
|
134
|
+
- Gemini CLI: `~/.gemini/settings.json`
|
|
135
|
+
- Kilo Code: `~/.kilo/mcp_settings.json`
|
|
136
|
+
|
|
137
|
+
Confirm:
|
|
138
|
+
|
|
139
|
+
- skills are installed under the agent's user-level skill directory
|
|
140
|
+
- config includes `powerbi-modeling-mcp`
|
|
141
|
+
- config includes `microsoft-learn`
|
|
142
|
+
|
|
143
|
+
If anything is missing, recommend:
|
|
144
|
+
|
|
145
|
+
```bash
|
|
146
|
+
super install --agent <agent-id> --yes
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
Then restart or refresh the agent.
|
|
150
|
+
|
|
151
|
+
## PHASE 3: Verify Optional Local Claude Code Plugin Config
|
|
152
|
+
|
|
153
|
+
If the user chooses option 3, or explicitly says they use `super kickoff` / `claude --plugin-dir`:
|
|
154
|
+
|
|
121
155
|
Check these files in order:
|
|
122
156
|
|
|
123
157
|
1. `.claude-plugin/plugin.json`
|
|
124
158
|
2. `.mcp.json`
|
|
125
|
-
3. `.bi-superpowers.json`
|
|
159
|
+
3. `.bi-superpowers.json`
|
|
126
160
|
|
|
127
161
|
Confirm:
|
|
128
162
|
|
|
@@ -151,7 +185,8 @@ claude --plugin-dir .
|
|
|
151
185
|
| --- | --- |
|
|
152
186
|
| Modeling MCP missing on Windows | Install the Microsoft extension in VS Code or Cursor |
|
|
153
187
|
| Modeling MCP installed manually | Set `BI_SUPERPOWERS_POWERBI_MODELING_MCP_PATH` |
|
|
154
|
-
|
|
|
188
|
+
| Agent not loading MCPs | Re-run `super install --agent <agent-id> --yes` and restart the agent |
|
|
189
|
+
| Local Claude Code plugin not loading MCPs | Re-run `super mcp-setup` inside the plugin project and restart Claude Code |
|
|
155
190
|
| macOS/Linux local modeling request | Use `microsoft-learn` for docs; live editing requires Windows |
|
|
156
191
|
| User asks about Excel MCP | Explain Excel remains supported through skills and library content, not a default MCP |
|
|
157
192
|
|
|
@@ -163,7 +198,8 @@ claude --plugin-dir .
|
|
|
163
198
|
| --- | --- | --- |
|
|
164
199
|
| Recommend `uvx` for Modeling MCP | Not the official Microsoft installation path | Use the official executable via the local launcher |
|
|
165
200
|
| Ask the user to find a localhost port | Not required in the new flow | Use the official Modeling MCP launcher |
|
|
166
|
-
|
|
|
201
|
+
| Run `super kickoff` for Codex/GitHub Copilot/Gemini/Kilo setup | `kickoff` creates repo-local Claude Code plugin files | Use `super install --agent <agent-id> --yes` |
|
|
202
|
+
| Treat `.mcp.json` as the default install target | It is only for optional local Claude Code plugins | Use the agent's user-level MCP config |
|
|
167
203
|
| Invent unofficial MCPs (remote, fabric, etc.) | This plugin only ships 2 official MCPs | Only use the 2 official MCPs we ship (`powerbi-modeling-mcp` and `microsoft-learn`) |
|
|
168
204
|
|
|
169
205
|
---
|