@luquimbo/bi-superpowers 2.0.1 → 3.0.0
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 +2 -24
- package/.claude-plugin/plugin.json +1 -1
- package/.claude-plugin/skill-manifest.json +2 -178
- package/.mcp.json +0 -16
- package/.plugin/plugin.json +1 -1
- package/AGENTS.md +37 -55
- package/CHANGELOG.md +44 -0
- package/README.md +74 -191
- package/bin/cli.js +42 -43
- package/bin/commands/install.js +37 -7
- package/bin/lib/generators/claude-plugin.js +6 -31
- package/bin/lib/generators/claude-plugin.test.js +12 -11
- package/bin/lib/mcp-config.js +242 -0
- package/bin/lib/mcp-config.test.js +184 -0
- package/bin/lib/microsoft-mcp.js +6 -20
- package/bin/lib/microsoft-mcp.test.js +25 -21
- package/bin/postinstall.js +18 -23
- package/bin/utils/mcp-detect.js +4 -20
- package/bin/utils/mcp-detect.test.js +9 -33
- package/package.json +1 -1
- package/skills/pbi-connect/SKILL.md +1 -1
- package/skills/project-kickoff/SKILL.md +1 -1
- package/commands/contributions.md +0 -265
- package/commands/data-model-design.md +0 -468
- package/commands/dax-doctor.md +0 -248
- package/commands/fabric-scripts.md +0 -452
- package/commands/migration-assistant.md +0 -290
- package/commands/model-documenter.md +0 -242
- package/commands/report-layout.md +0 -296
- package/commands/rls-design.md +0 -533
- package/commands/theme-tweaker.md +0 -624
- package/skills/contributions/SKILL.md +0 -267
- package/skills/data-model-design/SKILL.md +0 -470
- package/skills/data-modeling/SKILL.md +0 -280
- package/skills/data-quality/SKILL.md +0 -664
- package/skills/dax/SKILL.md +0 -746
- package/skills/dax-doctor/SKILL.md +0 -250
- package/skills/dax-udf/SKILL.md +0 -489
- package/skills/deployment/SKILL.md +0 -320
- package/skills/excel-formulas/SKILL.md +0 -463
- package/skills/fabric-scripts/SKILL.md +0 -454
- package/skills/fast-standard/SKILL.md +0 -509
- package/skills/governance/SKILL.md +0 -258
- package/skills/migration-assistant/SKILL.md +0 -292
- package/skills/model-documenter/SKILL.md +0 -244
- package/skills/power-query/SKILL.md +0 -406
- package/skills/query-performance/SKILL.md +0 -480
- package/skills/report-design/SKILL.md +0 -207
- package/skills/report-layout/SKILL.md +0 -298
- package/skills/rls-design/SKILL.md +0 -535
- package/skills/semantic-model/SKILL.md +0 -237
- package/skills/testing-validation/SKILL.md +0 -643
- package/skills/theme-tweaker/SKILL.md +0 -626
- package/src/content/skills/contributions.md +0 -259
- package/src/content/skills/data-model-design.md +0 -462
- package/src/content/skills/data-modeling.md +0 -272
- package/src/content/skills/data-quality.md +0 -656
- package/src/content/skills/dax-doctor.md +0 -242
- package/src/content/skills/dax-udf.md +0 -481
- package/src/content/skills/dax.md +0 -738
- package/src/content/skills/deployment.md +0 -312
- package/src/content/skills/excel-formulas.md +0 -455
- package/src/content/skills/fabric-scripts.md +0 -446
- package/src/content/skills/fast-standard.md +0 -501
- package/src/content/skills/governance.md +0 -250
- package/src/content/skills/migration-assistant.md +0 -284
- package/src/content/skills/model-documenter.md +0 -236
- package/src/content/skills/power-query.md +0 -398
- package/src/content/skills/query-performance.md +0 -472
- package/src/content/skills/report-design.md +0 -199
- package/src/content/skills/report-layout.md +0 -290
- package/src/content/skills/rls-design.md +0 -527
- package/src/content/skills/semantic-model.md +0 -229
- package/src/content/skills/testing-validation.md +0 -635
- package/src/content/skills/theme-tweaker.md +0 -618
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
},
|
|
7
7
|
"metadata": {
|
|
8
8
|
"description": "AI-powered skills for Power BI, Microsoft Fabric, and Excel development. 24 skills covering DAX, Power Query, data modeling, report design, governance, and more.",
|
|
9
|
-
"version": "
|
|
9
|
+
"version": "3.0.0",
|
|
10
10
|
"repository": "https://github.com/luquimbo/bi-superpowers"
|
|
11
11
|
},
|
|
12
12
|
"plugins": [
|
|
@@ -16,30 +16,8 @@
|
|
|
16
16
|
"source": "./",
|
|
17
17
|
"strict": false,
|
|
18
18
|
"skills": [
|
|
19
|
-
"./skills/contributions",
|
|
20
|
-
"./skills/data-model-design",
|
|
21
|
-
"./skills/data-modeling",
|
|
22
|
-
"./skills/data-quality",
|
|
23
|
-
"./skills/dax",
|
|
24
|
-
"./skills/dax-doctor",
|
|
25
|
-
"./skills/dax-udf",
|
|
26
|
-
"./skills/deployment",
|
|
27
|
-
"./skills/excel-formulas",
|
|
28
|
-
"./skills/fabric-scripts",
|
|
29
|
-
"./skills/fast-standard",
|
|
30
|
-
"./skills/governance",
|
|
31
|
-
"./skills/migration-assistant",
|
|
32
|
-
"./skills/model-documenter",
|
|
33
19
|
"./skills/pbi-connect",
|
|
34
|
-
"./skills/
|
|
35
|
-
"./skills/project-kickoff",
|
|
36
|
-
"./skills/query-performance",
|
|
37
|
-
"./skills/report-design",
|
|
38
|
-
"./skills/report-layout",
|
|
39
|
-
"./skills/rls-design",
|
|
40
|
-
"./skills/semantic-model",
|
|
41
|
-
"./skills/testing-validation",
|
|
42
|
-
"./skills/theme-tweaker"
|
|
20
|
+
"./skills/project-kickoff"
|
|
43
21
|
]
|
|
44
22
|
}
|
|
45
23
|
]
|
|
@@ -1,120 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bi-superpowers",
|
|
3
|
-
"version": "
|
|
4
|
-
"skillCount":
|
|
3
|
+
"version": "3.0.0",
|
|
4
|
+
"skillCount": 2,
|
|
5
5
|
"skills": [
|
|
6
|
-
{
|
|
7
|
-
"name": "contributions",
|
|
8
|
-
"title": "Contributions Validation Skill",
|
|
9
|
-
"description": "Contributions Validation Skill: Contribution validation.",
|
|
10
|
-
"category": "command",
|
|
11
|
-
"triggerCount": 0,
|
|
12
|
-
"path": "skills/contributions/SKILL.md"
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"name": "data-model-design",
|
|
16
|
-
"title": "Data Model Design Skill",
|
|
17
|
-
"description": "Use when the user asks about Data Model Design Skill, especially phrases like \"diseñar modelo de datos\", \"crear modelo Power BI\", \"arquitectura de datos\", \"empezar proyecto BI\", \"nuevo modelo semántico\".",
|
|
18
|
-
"category": "command",
|
|
19
|
-
"triggerCount": 5,
|
|
20
|
-
"path": "skills/data-model-design/SKILL.md"
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"name": "data-modeling",
|
|
24
|
-
"title": "Data Modeling Skill",
|
|
25
|
-
"description": "Use when the user asks about Data Modeling Skill, especially phrases like \"data model\", \"star schema\", \"fact table\", \"relationship\", \"surrogate key\", \"SCD\".",
|
|
26
|
-
"category": "reference",
|
|
27
|
-
"triggerCount": 7,
|
|
28
|
-
"path": "skills/data-modeling/SKILL.md"
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"name": "data-quality",
|
|
32
|
-
"title": "Data Quality Skill",
|
|
33
|
-
"description": "Use when the user asks about Data Quality Skill, especially phrases like \"data quality\", \"check for errors\", \"data profiling\", \"clean data\", \"calidad de datos\".",
|
|
34
|
-
"category": "reference",
|
|
35
|
-
"triggerCount": 5,
|
|
36
|
-
"path": "skills/data-quality/SKILL.md"
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"name": "dax-doctor",
|
|
40
|
-
"title": "DAX Doctor Skill",
|
|
41
|
-
"description": "Use when the user asks about DAX Doctor Skill, especially phrases like \"debug DAX\", \"wrong result\", \"DAX error\", \"slow measure\", \"context issue\", \"depurar DAX\".",
|
|
42
|
-
"category": "command",
|
|
43
|
-
"triggerCount": 6,
|
|
44
|
-
"path": "skills/dax-doctor/SKILL.md"
|
|
45
|
-
},
|
|
46
|
-
{
|
|
47
|
-
"name": "dax-udf",
|
|
48
|
-
"title": "DAX User-Defined Functions (UDFs)",
|
|
49
|
-
"description": "Use when the user asks about DAX User-Defined Functions (UDFs), especially phrases like \"UDF\", \"DEFINE FUNCTION\", \"DAX Lib\", \"NAMEOF\", \"reusable DAX\", \"VAL parameter\".",
|
|
50
|
-
"category": "reference",
|
|
51
|
-
"triggerCount": 8,
|
|
52
|
-
"path": "skills/dax-udf/SKILL.md"
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
"name": "dax",
|
|
56
|
-
"title": "DAX Skill",
|
|
57
|
-
"description": "Use when the user asks about DAX Skill, especially phrases like \"DAX\", \"CALCULATE\", \"time intelligence\", \"SUMX\", \"context transition\", \"Power BI formula\".",
|
|
58
|
-
"category": "reference",
|
|
59
|
-
"triggerCount": 7,
|
|
60
|
-
"path": "skills/dax/SKILL.md"
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"name": "deployment",
|
|
64
|
-
"title": "Deployment Skill",
|
|
65
|
-
"description": "Use when the user asks about Deployment Skill, especially phrases like \"deploy\", \"CI/CD\", \"ALM\", \"git integration\", \"environment\", \"desplegar\".",
|
|
66
|
-
"category": "reference",
|
|
67
|
-
"triggerCount": 6,
|
|
68
|
-
"path": "skills/deployment/SKILL.md"
|
|
69
|
-
},
|
|
70
|
-
{
|
|
71
|
-
"name": "excel-formulas",
|
|
72
|
-
"title": "Excel Formulas Skill",
|
|
73
|
-
"description": "Use when the user asks about Excel Formulas Skill, especially phrases like \"Excel formula\", \"XLOOKUP\", \"dynamic array\", \"LET formula\", \"named range\", \"conditional formatting formula\".",
|
|
74
|
-
"category": "reference",
|
|
75
|
-
"triggerCount": 7,
|
|
76
|
-
"path": "skills/excel-formulas/SKILL.md"
|
|
77
|
-
},
|
|
78
|
-
{
|
|
79
|
-
"name": "fabric-scripts",
|
|
80
|
-
"title": "Fabric Scripts Skill",
|
|
81
|
-
"description": "Use when the user asks about Fabric Scripts Skill, especially phrases like \"Fabric scripts\", \"download dataflows\", \"diagnose connection\", \"TMDL sync\", \"scripts de Fabric\".",
|
|
82
|
-
"category": "command",
|
|
83
|
-
"triggerCount": 5,
|
|
84
|
-
"path": "skills/fabric-scripts/SKILL.md"
|
|
85
|
-
},
|
|
86
|
-
{
|
|
87
|
-
"name": "fast-standard",
|
|
88
|
-
"title": "FAST Standard Skill",
|
|
89
|
-
"description": "Use when the user asks about FAST Standard Skill, especially phrases like \"FAST Standard\", \"financial model\", \"spreadsheet modeling best practices\", \"model audit\", \"calculation block\", \"modelo financiero\".",
|
|
90
|
-
"category": "reference",
|
|
91
|
-
"triggerCount": 6,
|
|
92
|
-
"path": "skills/fast-standard/SKILL.md"
|
|
93
|
-
},
|
|
94
|
-
{
|
|
95
|
-
"name": "governance",
|
|
96
|
-
"title": "Governance Skill",
|
|
97
|
-
"description": "Use when the user asks about Governance Skill, especially phrases like \"naming convention\", \"governance\", \"documentation standard\", \"display folder\", \"convención de nombres\".",
|
|
98
|
-
"category": "reference",
|
|
99
|
-
"triggerCount": 5,
|
|
100
|
-
"path": "skills/governance/SKILL.md"
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
"name": "migration-assistant",
|
|
104
|
-
"title": "Migration Assistant Skill",
|
|
105
|
-
"description": "Use when the user asks about Migration Assistant Skill, especially phrases like \"migrate\", \"move to Fabric\", \"Desktop to PBIP\", \"deprecated feature\", \"migrar\".",
|
|
106
|
-
"category": "command",
|
|
107
|
-
"triggerCount": 5,
|
|
108
|
-
"path": "skills/migration-assistant/SKILL.md"
|
|
109
|
-
},
|
|
110
|
-
{
|
|
111
|
-
"name": "model-documenter",
|
|
112
|
-
"title": "Model Documenter Skill",
|
|
113
|
-
"description": "Use when the user asks about Model Documenter Skill, especially phrases like \"document model\", \"document measures\", \"generate documentation\", \"describe tables\", \"documentar modelo\".",
|
|
114
|
-
"category": "command",
|
|
115
|
-
"triggerCount": 5,
|
|
116
|
-
"path": "skills/model-documenter/SKILL.md"
|
|
117
|
-
},
|
|
118
6
|
{
|
|
119
7
|
"name": "pbi-connect",
|
|
120
8
|
"title": "Power BI MCP Connection Skill",
|
|
@@ -123,14 +11,6 @@
|
|
|
123
11
|
"triggerCount": 5,
|
|
124
12
|
"path": "skills/pbi-connect/SKILL.md"
|
|
125
13
|
},
|
|
126
|
-
{
|
|
127
|
-
"name": "power-query",
|
|
128
|
-
"title": "Power Query Skill",
|
|
129
|
-
"description": "Use when the user asks about Power Query Skill, especially phrases like \"Power Query\", \"query folding\", \"ETL\", \"source connection\", \"refresh\", \"parameters\".",
|
|
130
|
-
"category": "reference",
|
|
131
|
-
"triggerCount": 7,
|
|
132
|
-
"path": "skills/power-query/SKILL.md"
|
|
133
|
-
},
|
|
134
14
|
{
|
|
135
15
|
"name": "project-kickoff",
|
|
136
16
|
"title": "Project Kickoff Skill",
|
|
@@ -138,62 +18,6 @@
|
|
|
138
18
|
"category": "command",
|
|
139
19
|
"triggerCount": 0,
|
|
140
20
|
"path": "skills/project-kickoff/SKILL.md"
|
|
141
|
-
},
|
|
142
|
-
{
|
|
143
|
-
"name": "query-performance",
|
|
144
|
-
"title": "Query Performance Skill",
|
|
145
|
-
"description": "Use when the user asks about Query Performance Skill, especially phrases like \"slow\", \"DAX Studio\", \"taking too long\", \"reduce refresh time\", \"rendimiento\".",
|
|
146
|
-
"category": "reference",
|
|
147
|
-
"triggerCount": 5,
|
|
148
|
-
"path": "skills/query-performance/SKILL.md"
|
|
149
|
-
},
|
|
150
|
-
{
|
|
151
|
-
"name": "report-design",
|
|
152
|
-
"title": "Report Design Skill",
|
|
153
|
-
"description": "Use when the user asks about Report Design Skill, especially phrases like \"report design\", \"chart type\", \"IBCS\", \"accessibility\", \"mobile layout\", \"diseño de reporte\".",
|
|
154
|
-
"category": "reference",
|
|
155
|
-
"triggerCount": 6,
|
|
156
|
-
"path": "skills/report-design/SKILL.md"
|
|
157
|
-
},
|
|
158
|
-
{
|
|
159
|
-
"name": "report-layout",
|
|
160
|
-
"title": "Report Layout Skill",
|
|
161
|
-
"description": "Use when the user asks about Report Layout Skill, especially phrases like \"report layout\", \"visual placement\", \"report wireframe\", \"navigation design\", \"diseño de reporte\".",
|
|
162
|
-
"category": "command",
|
|
163
|
-
"triggerCount": 5,
|
|
164
|
-
"path": "skills/report-layout/SKILL.md"
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
"name": "rls-design",
|
|
168
|
-
"title": "RLS Design Skill",
|
|
169
|
-
"description": "Use when the user asks about RLS Design Skill, especially phrases like \"RLS\", \"user can only see their data\", \"restrict access\", \"security role\", \"seguridad a nivel de fila\".",
|
|
170
|
-
"category": "command",
|
|
171
|
-
"triggerCount": 5,
|
|
172
|
-
"path": "skills/rls-design/SKILL.md"
|
|
173
|
-
},
|
|
174
|
-
{
|
|
175
|
-
"name": "semantic-model",
|
|
176
|
-
"title": "Semantic Model Skill",
|
|
177
|
-
"description": "Use when the user asks about Semantic Model Skill, especially phrases like \"semantic model\", \"TMDL\", \"DirectLake\", \"calculation group\", \"storage mode\", \"modelo semántico\".",
|
|
178
|
-
"category": "reference",
|
|
179
|
-
"triggerCount": 6,
|
|
180
|
-
"path": "skills/semantic-model/SKILL.md"
|
|
181
|
-
},
|
|
182
|
-
{
|
|
183
|
-
"name": "testing-validation",
|
|
184
|
-
"title": "Testing & Validation Skill",
|
|
185
|
-
"description": "Use when the user asks about Testing & Validation Skill, especially phrases like \"test\", \"unit test DAX\", \"regression test\", \"deployment checklist\", \"data reconciliation\", \"pruebas\".",
|
|
186
|
-
"category": "reference",
|
|
187
|
-
"triggerCount": 6,
|
|
188
|
-
"path": "skills/testing-validation/SKILL.md"
|
|
189
|
-
},
|
|
190
|
-
{
|
|
191
|
-
"name": "theme-tweaker",
|
|
192
|
-
"title": "Theme Tweaker Skill",
|
|
193
|
-
"description": "Use when the user asks about Theme Tweaker Skill, especially phrases like \"modificar tema\", \"cambiar colores Power BI\", \"personalizar tema\", \"ajustar estilo\", \"theme tweaker\".",
|
|
194
|
-
"category": "command",
|
|
195
|
-
"triggerCount": 5,
|
|
196
|
-
"path": "skills/theme-tweaker/SKILL.md"
|
|
197
21
|
}
|
|
198
22
|
]
|
|
199
23
|
}
|
package/.mcp.json
CHANGED
|
@@ -1,20 +1,4 @@
|
|
|
1
1
|
{
|
|
2
|
-
"powerbi-remote": {
|
|
3
|
-
"type": "http",
|
|
4
|
-
"url": "https://api.fabric.microsoft.com/v1/mcp/powerbi"
|
|
5
|
-
},
|
|
6
|
-
"fabric-mcp-server": {
|
|
7
|
-
"type": "stdio",
|
|
8
|
-
"command": "npx",
|
|
9
|
-
"args": [
|
|
10
|
-
"-y",
|
|
11
|
-
"@microsoft/fabric-mcp@latest",
|
|
12
|
-
"server",
|
|
13
|
-
"start",
|
|
14
|
-
"--mode",
|
|
15
|
-
"all"
|
|
16
|
-
]
|
|
17
|
-
},
|
|
18
2
|
"powerbi-modeling-mcp": {
|
|
19
3
|
"type": "stdio",
|
|
20
4
|
"command": "node",
|
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
|
+
"version": "3.0.0",
|
|
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
|
@@ -87,48 +87,52 @@ Developed by **Lucas Sanchez** ([@luquimbo](https://github.com/luquimbo))
|
|
|
87
87
|
|
|
88
88
|
## Installation
|
|
89
89
|
|
|
90
|
-
###
|
|
90
|
+
### Claude Code (primary — full experience)
|
|
91
91
|
|
|
92
92
|
```bash
|
|
93
|
-
|
|
93
|
+
# 1. Install the CLI globally
|
|
94
|
+
npm install -g @luquimbo/bi-superpowers
|
|
95
|
+
|
|
96
|
+
# 2. Initialize the plugin in your project
|
|
97
|
+
cd your-bi-project
|
|
98
|
+
super kickoff
|
|
99
|
+
|
|
100
|
+
# 3. Run Claude Code with the plugin
|
|
101
|
+
claude --plugin-dir .
|
|
94
102
|
```
|
|
95
103
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
104
|
+
You get:
|
|
105
|
+
- **24 skills** — activated automatically by keyword
|
|
106
|
+
- **11 slash commands** — `/project-kickoff`, `/dax-doctor`, `/data-model-design`, etc.
|
|
107
|
+
- **4 Microsoft MCP servers** — Power BI, Fabric, Modeling, Microsoft Learn
|
|
108
|
+
- **Biblioteca completa** — snippets, templates, themes de Power BI
|
|
99
109
|
|
|
100
|
-
|
|
101
|
-
- `--all --yes` — instala para los 5 agentes sin prompts
|
|
102
|
-
- `--agent claude-code --agent codex` — agentes específicos
|
|
103
|
-
- Sin flags → modo interactivo (detecta agentes instalados)
|
|
110
|
+
Open source (MIT). Sin licencias ni keys.
|
|
104
111
|
|
|
105
|
-
###
|
|
112
|
+
### Claude Desktop
|
|
106
113
|
|
|
107
114
|
```bash
|
|
108
|
-
|
|
109
|
-
|
|
115
|
+
super build-desktop
|
|
116
|
+
# Double-click bi-superpowers.mcpb para instalar en Claude Desktop
|
|
110
117
|
```
|
|
111
118
|
|
|
112
|
-
|
|
113
|
-
|
|
119
|
+
Los 24 skills quedan disponibles como MCP prompts.
|
|
120
|
+
|
|
121
|
+
### Other AI agents (experimental — skills only)
|
|
114
122
|
|
|
115
|
-
|
|
123
|
+
Los 24 skills funcionan en **GitHub Copilot, Codex, Gemini CLI, Kilo Code** vía el estándar abierto Agent Skills, pero con limitaciones:
|
|
124
|
+
|
|
125
|
+
- Los slash commands (`/dax-doctor`, etc.) **solo funcionan en Claude Code**. En otros agentes hay que usar lenguaje natural.
|
|
126
|
+
- Los MCP servers **solo funcionan en agentes con soporte MCP** (Claude Code, Copilot en VS Code, Codex).
|
|
127
|
+
- La configuración automática de MCPs Microsoft (Power BI Desktop local, Fabric auth) **solo está automatizada en el flujo de Claude Code**.
|
|
128
|
+
|
|
129
|
+
Si igual querés los skills en otro agente:
|
|
116
130
|
|
|
117
131
|
```bash
|
|
118
|
-
|
|
119
|
-
/plugin install bi-superpowers
|
|
132
|
+
npx @luquimbo/bi-superpowers install
|
|
120
133
|
```
|
|
121
134
|
|
|
122
|
-
|
|
123
|
-
> **Opción 1** o **Opción 2** que instalan desde el paquete npm público.
|
|
124
|
-
|
|
125
|
-
Works with:
|
|
126
|
-
- **Claude Code** — Plugin nativo (skills + commands + MCP)
|
|
127
|
-
- **GitHub Copilot** — Agent skills (VS Code & CLI)
|
|
128
|
-
- **Codex (OpenAI)** — Agent skills via `.agents/skills/`
|
|
129
|
-
- **Gemini CLI** — Agent skills via `.gemini/skills/`
|
|
130
|
-
- **Kilo Code** — Agent skills via `.kilocode/skills/`
|
|
131
|
-
- **Claude Desktop** — Via MCPB extension (`super build-desktop`)
|
|
135
|
+
Instala los 24 skills en `~/.agents/skills/` con symlinks a los directorios específicos de cada agente. Este comando es un bonus para usuarios avanzados; la experiencia full sigue siendo Claude Code.
|
|
132
136
|
|
|
133
137
|
---
|
|
134
138
|
|
|
@@ -156,41 +160,19 @@ Works with:
|
|
|
156
160
|
- **No Laziness**: Fix root causes, avoid temporary patches.
|
|
157
161
|
- **Minimal Impact**: Touch only what is necessary.
|
|
158
162
|
|
|
159
|
-
## Available Skills (
|
|
160
|
-
|
|
161
|
-
### Command Skills (11 Interactive Wizards)
|
|
163
|
+
## Available Skills (2)
|
|
162
164
|
|
|
163
165
|
| Skill | Purpose | Trigger |
|
|
164
166
|
|-------|---------|---------|
|
|
165
167
|
| `/project-kickoff` | Analyze and plan BI projects | "analyze project", "new project" |
|
|
166
|
-
| `/data-model-design` | Interactive star schema builder | "design model", "data model" |
|
|
167
|
-
| `/theme-tweaker` | Customize Power BI themes | "customize theme", "colors" |
|
|
168
168
|
| `/pbi-connect` | Connect to Power BI Desktop | "connect Power BI", "MCP" |
|
|
169
|
-
| `/rls-design` | Row-level security design | "RLS", "security" |
|
|
170
|
-
| `/fabric-scripts` | Microsoft Fabric automation | "Fabric", "scripts", "automation" |
|
|
171
|
-
| `/contributions` | Contribution guidelines | "contribute", "PR guidelines" |
|
|
172
|
-
| `/dax-doctor` | DAX debugging and optimization | "debug DAX", "fix measure", "DAX error" |
|
|
173
|
-
| `/model-documenter` | Semantic model documentation | "document model", "data dictionary" |
|
|
174
|
-
| `/migration-assistant` | Migration and upgrade wizard | "migrate", "convert to PBIP", "move to Fabric" |
|
|
175
|
-
| `/report-layout` | Report page layout planner | "report layout", "page design" |
|
|
176
169
|
|
|
177
|
-
|
|
170
|
+
## MCP Servers (2)
|
|
178
171
|
|
|
179
|
-
|
|
|
180
|
-
|
|
181
|
-
|
|
|
182
|
-
|
|
|
183
|
-
| `/data-modeling` | Star schema theory and patterns | "star schema", "modeling best practices" |
|
|
184
|
-
| `/excel-formulas` | Modern Excel formulas | "Excel formula", "XLOOKUP" |
|
|
185
|
-
| `/fast-standard` | FP&A Financial modeling (FAST) | "FAST standard", "financial model" |
|
|
186
|
-
| `/query-performance` | Performance optimization | "optimize", "slow", "performance" |
|
|
187
|
-
| `/data-quality` | Data profiling and validation | "data quality", "validation" |
|
|
188
|
-
| `/testing-validation` | DAX and data testing workflows | "testing", "test cases" |
|
|
189
|
-
| `/governance` | Naming conventions and standards | "naming convention", "governance" |
|
|
190
|
-
| `/semantic-model` | Semantic model best practices | "semantic model", "TMDL", "DirectLake" |
|
|
191
|
-
| `/report-design` | Report design and visualization | "chart type", "IBCS", "accessibility" |
|
|
192
|
-
| `/deployment` | CI/CD and deployment patterns | "CI/CD", "pipeline", "DevOps" |
|
|
193
|
-
| `/dax-udf` | DAX user-defined functions (UDFs) | "UDF", "DEFINE FUNCTION", "DAX Lib" |
|
|
172
|
+
| MCP | Type | Purpose |
|
|
173
|
+
|-----|------|---------|
|
|
174
|
+
| `powerbi-modeling` | stdio | Local connection to Power BI Desktop via XMLA |
|
|
175
|
+
| `microsoft-learn` | http | Microsoft Learn docs in context |
|
|
194
176
|
|
|
195
177
|
---
|
|
196
178
|
|
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,50 @@ 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
|
+
## [3.0.0] — 2026-04-11
|
|
9
|
+
|
|
10
|
+
### BREAKING CHANGES — massive scope reduction
|
|
11
|
+
|
|
12
|
+
The plugin has been simplified to its core: **Power BI Desktop local development**. Everything Fabric-related and all the "nice-to-have" reference content has been removed to start with a clean slate.
|
|
13
|
+
|
|
14
|
+
#### Removed skills (22)
|
|
15
|
+
|
|
16
|
+
`contributions`, `data-model-design`, `data-modeling`, `data-quality`, `dax`, `dax-doctor`, `dax-udf`, `deployment`, `excel-formulas`, `fabric-scripts`, `fast-standard`, `governance`, `migration-assistant`, `model-documenter`, `power-query`, `query-performance`, `report-design`, `report-layout`, `rls-design`, `semantic-model`, `testing-validation`, `theme-tweaker`.
|
|
17
|
+
|
|
18
|
+
#### Kept skills (2)
|
|
19
|
+
|
|
20
|
+
- `project-kickoff` — Analyze your BI project and plan next steps
|
|
21
|
+
- `pbi-connect` — Connect your AI agent to Power BI Desktop
|
|
22
|
+
|
|
23
|
+
#### Removed MCP servers (2)
|
|
24
|
+
|
|
25
|
+
- `powerbi-remote` (HTTP Fabric MCP)
|
|
26
|
+
- `fabric-mcp-server` (Fabric CLI MCP)
|
|
27
|
+
|
|
28
|
+
#### Kept MCP servers (2)
|
|
29
|
+
|
|
30
|
+
- `powerbi-modeling` — Local stdio launcher that talks to Power BI Desktop via XMLA
|
|
31
|
+
- `microsoft-learn` — HTTP MCP for Microsoft Learn docs
|
|
32
|
+
|
|
33
|
+
#### New: multi-agent MCP configuration
|
|
34
|
+
|
|
35
|
+
`super install` now writes MCP config files for **all 5 supported agents** in the correct format and path each agent expects:
|
|
36
|
+
|
|
37
|
+
- Claude Code → `~/.claude.json` (`mcpServers` JSON)
|
|
38
|
+
- GitHub Copilot → `~/.copilot/mcp-config.json` (`servers` JSON)
|
|
39
|
+
- Codex → `~/.codex/config.toml` (TOML `[mcp_servers.*]`)
|
|
40
|
+
- Gemini CLI → `~/.gemini/settings.json` (`mcpServers` with `httpUrl`)
|
|
41
|
+
- Kilo Code → `~/.kilocode/mcp_settings.json` (`mcpServers` JSON)
|
|
42
|
+
|
|
43
|
+
New module: `bin/lib/mcp-config.js` with per-agent writers and tests.
|
|
44
|
+
|
|
45
|
+
### Migration
|
|
46
|
+
|
|
47
|
+
- Run `npm install -g @luquimbo/bi-superpowers@latest`
|
|
48
|
+
- Run `super install --all --yes` to install skills + MCPs for all detected agents
|
|
49
|
+
- Restart your AI agent to pick up the new MCP config
|
|
50
|
+
- The old `.mcp.json` from v2 that had 4 servers is replaced by the new 2-server config
|
|
51
|
+
|
|
8
52
|
## [2.0.0] — 2026-04-11
|
|
9
53
|
|
|
10
54
|
### BREAKING CHANGES
|