@luquimbo/bi-superpowers 2.0.0 → 2.0.1

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.
@@ -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": "2.0.0",
9
+ "version": "2.0.1",
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": "2.0.0",
4
+ "version": "2.0.1",
5
5
  "author": {
6
6
  "name": "Lucas Sanchez"
7
7
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bi-superpowers",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "skillCount": 24,
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": "2.0.0",
4
+ "version": "2.0.1",
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,31 @@ 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
+ ## [2.0.0] — 2026-04-11
9
+
10
+ ### BREAKING CHANGES
11
+ - **Removed the entire license system.** The plugin is now 100% open source (MIT).
12
+ - Removed `bin/lib/licensing/` directory (storage, validator, index)
13
+ - Removed commands: `super unlock`, `super status`, `super activate`
14
+ - Removed functions: `loadLicense`, `saveLicense`, `validateLicense`,
15
+ `isContentInstalled`, `downloadPremiumContent`, `requireLicense`
16
+ - Removed license gates on `super kickoff` and `super recharge`
17
+ - Removed `~/.bi-superpowers/` content cache directory
18
+ - Removed env vars `BIAS_API_URL` and `BIAS_DEV_MODE`
19
+ - Existing `~/.bi-superpowers-license` files are silently ignored
20
+
21
+ ### Migration
22
+ - Run `npm install -g @luquimbo/bi-superpowers@latest`
23
+ - Remove any references to `super unlock` / `super status` from your scripts
24
+ - All 24 skills and the full library now ship with the npm package and are
25
+ immediately available after install
26
+
27
+ ### Changed
28
+ - `bin/lib/skills.js` no longer supports a content cache fallback — it only
29
+ reads from the package source directory
30
+ - `getCommandConfig` no longer includes `contentCacheDir`
31
+ - Simplified postinstall message and README quick start
32
+
8
33
  ## [Unreleased]
9
34
 
10
35
  ### Added
package/bin/cli.js CHANGED
@@ -321,11 +321,9 @@ function parseSkillMetadata(content) {
321
321
  * Initialize project with interactive prompts (super kickoff)
322
322
  *
323
323
  * This is the main setup wizard that:
324
- * 1. Validates the user's license
325
- * 2. Prompts for which AI tools to configure
326
- * 3. Generates config files for each selected tool
327
- * 4. Creates a symlink to the content cache for easy access
328
- * 5. Saves the selected tools to .bi-superpowers.json
324
+ * 1. Generates config files for the Claude Code plugin in the target directory
325
+ * 2. Saves the selected tools to .bi-superpowers.json
326
+ * 3. Copies a default config.json template if none exists
329
327
  *
330
328
  * Supports --dry-run flag to preview changes without writing files.
331
329
  *
@@ -382,9 +380,6 @@ Skills available: ${skills.length}
382
380
  // Ensure project-level config.json exists (used as AI preferences/context)
383
381
  ensureProjectConfigJson(targetDir);
384
382
 
385
- // Create library symlink used by generated plugin files
386
- createSymlink(targetDir);
387
-
388
383
  // Generate configs for selected tools
389
384
  console.log('');
390
385
  for (const tool of selectedTools) {
@@ -614,15 +609,6 @@ async function generateForTool(tool, targetDir, skills) {
614
609
  }
615
610
  }
616
611
 
617
- /**
618
- * Placeholder kept for backwards compatibility with callers. Previously
619
- * created a symlink from the project to the license content cache; now that
620
- * content is bundled in the npm package we no longer need the symlink.
621
- */
622
- function createSymlink(_targetDir) {
623
- // no-op (kept to avoid breaking existing call sites)
624
- }
625
-
626
612
  function showCompletionMessage(targetDir, tools, skillCount) {
627
613
  console.log(`
628
614
  ════════════════════════════════════════════════════════════
@@ -7,9 +7,6 @@
7
7
  * @module lib/generators/shared
8
8
  */
9
9
 
10
- const fs = require('fs');
11
- const path = require('path');
12
-
13
10
  /**
14
11
  * Extract skill metadata from markdown content
15
12
  *
@@ -243,33 +240,6 @@ ${codeStandards}
243
240
  ${footer}`;
244
241
  }
245
242
 
246
- /**
247
- * Create symlink to content cache directory for easy access to library
248
- * @param {string} targetDir - Project directory path
249
- * @param {string} contentCacheDir - Content cache directory path
250
- * @param {string} symlinkName - Name of the symlink to create
251
- */
252
- function createSymlink(targetDir, contentCacheDir, symlinkName) {
253
- const linkPath = path.join(targetDir, symlinkName);
254
- // Remove existing symlink if it exists
255
- if (fs.existsSync(linkPath)) {
256
- try {
257
- fs.unlinkSync(linkPath);
258
- } catch (e) {
259
- // Ignore errors
260
- }
261
- }
262
- try {
263
- fs.symlinkSync(contentCacheDir, linkPath, 'dir');
264
- console.log(` ✓ Created ${symlinkName} symlink`);
265
- } catch (e) {
266
- // Symlink may fail on Windows without admin rights
267
- if (process.env.DEBUG === 'true') {
268
- console.error(`[DEBUG] Failed to create symlink: ${e.message}`);
269
- }
270
- }
271
- }
272
-
273
243
  module.exports = {
274
244
  parseSkillMetadata,
275
245
  getSkillPurpose,
@@ -278,5 +248,4 @@ module.exports = {
278
248
  getFormatHeader,
279
249
  getFormatFooter,
280
250
  generateCombinedConfig,
281
- createSymlink,
282
251
  };
package/bin/lib/skills.js CHANGED
@@ -3,8 +3,7 @@
3
3
  * =======================
4
4
  *
5
5
  * Centralizes how BI Agent Superpowers loads skill source files from
6
- * the installed npm package. Since the project is open source, there's
7
- * no premium content cache — everything ships with the package.
6
+ * the installed npm package. Everything ships with the package.
8
7
  *
9
8
  * @module lib/skills
10
9
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luquimbo/bi-superpowers",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Plugin-first Claude Code toolkit for Power BI, Microsoft Fabric, and Excel workflows powered by official Microsoft MCP servers.",
5
5
  "main": "bin/cli.js",
6
6
  "bin": {
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: "contributions"
3
3
  description: "Contributions Validation Skill: Contribution validation."
4
- version: "2.0.0"
4
+ version: "2.0.1"
5
5
  ---
6
6
 
7
7
  <!-- Generated by BI Agent Superpowers. Edit src/content/skills/contributions.md instead. -->
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: "data-model-design"
3
3
  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\"."
4
- version: "2.0.0"
4
+ version: "2.0.1"
5
5
  ---
6
6
 
7
7
  <!-- Generated by BI Agent Superpowers. Edit src/content/skills/data-model-design.md instead. -->
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: "data-modeling"
3
3
  description: "Use when the user asks about Data Modeling Skill, especially phrases like \"data model\", \"star schema\", \"fact table\", \"relationship\", \"surrogate key\", \"SCD\"."
4
- version: "2.0.0"
4
+ version: "2.0.1"
5
5
  ---
6
6
 
7
7
  <!-- Generated by BI Agent Superpowers. Edit src/content/skills/data-modeling.md instead. -->
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: "data-quality"
3
3
  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\"."
4
- version: "2.0.0"
4
+ version: "2.0.1"
5
5
  ---
6
6
 
7
7
  <!-- Generated by BI Agent Superpowers. Edit src/content/skills/data-quality.md instead. -->
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: "dax"
3
3
  description: "Use when the user asks about DAX Skill, especially phrases like \"DAX\", \"CALCULATE\", \"time intelligence\", \"SUMX\", \"context transition\", \"Power BI formula\"."
4
- version: "2.0.0"
4
+ version: "2.0.1"
5
5
  ---
6
6
 
7
7
  <!-- Generated by BI Agent Superpowers. Edit src/content/skills/dax.md instead. -->
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: "dax-doctor"
3
3
  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\"."
4
- version: "2.0.0"
4
+ version: "2.0.1"
5
5
  ---
6
6
 
7
7
  <!-- Generated by BI Agent Superpowers. Edit src/content/skills/dax-doctor.md instead. -->
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: "dax-udf"
3
3
  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\"."
4
- version: "2.0.0"
4
+ version: "2.0.1"
5
5
  ---
6
6
 
7
7
  <!-- Generated by BI Agent Superpowers. Edit src/content/skills/dax-udf.md instead. -->
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: "deployment"
3
3
  description: "Use when the user asks about Deployment Skill, especially phrases like \"deploy\", \"CI/CD\", \"ALM\", \"git integration\", \"environment\", \"desplegar\"."
4
- version: "2.0.0"
4
+ version: "2.0.1"
5
5
  ---
6
6
 
7
7
  <!-- Generated by BI Agent Superpowers. Edit src/content/skills/deployment.md instead. -->
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: "excel-formulas"
3
3
  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\"."
4
- version: "2.0.0"
4
+ version: "2.0.1"
5
5
  ---
6
6
 
7
7
  <!-- Generated by BI Agent Superpowers. Edit src/content/skills/excel-formulas.md instead. -->
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: "fabric-scripts"
3
3
  description: "Use when the user asks about Fabric Scripts Skill, especially phrases like \"Fabric scripts\", \"download dataflows\", \"diagnose connection\", \"TMDL sync\", \"scripts de Fabric\"."
4
- version: "2.0.0"
4
+ version: "2.0.1"
5
5
  ---
6
6
 
7
7
  <!-- Generated by BI Agent Superpowers. Edit src/content/skills/fabric-scripts.md instead. -->
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: "fast-standard"
3
3
  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\"."
4
- version: "2.0.0"
4
+ version: "2.0.1"
5
5
  ---
6
6
 
7
7
  <!-- Generated by BI Agent Superpowers. Edit src/content/skills/fast-standard.md instead. -->
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: "governance"
3
3
  description: "Use when the user asks about Governance Skill, especially phrases like \"naming convention\", \"governance\", \"documentation standard\", \"display folder\", \"convención de nombres\"."
4
- version: "2.0.0"
4
+ version: "2.0.1"
5
5
  ---
6
6
 
7
7
  <!-- Generated by BI Agent Superpowers. Edit src/content/skills/governance.md instead. -->
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: "migration-assistant"
3
3
  description: "Use when the user asks about Migration Assistant Skill, especially phrases like \"migrate\", \"move to Fabric\", \"Desktop to PBIP\", \"deprecated feature\", \"migrar\"."
4
- version: "2.0.0"
4
+ version: "2.0.1"
5
5
  ---
6
6
 
7
7
  <!-- Generated by BI Agent Superpowers. Edit src/content/skills/migration-assistant.md instead. -->
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: "model-documenter"
3
3
  description: "Use when the user asks about Model Documenter Skill, especially phrases like \"document model\", \"document measures\", \"generate documentation\", \"describe tables\", \"documentar modelo\"."
4
- version: "2.0.0"
4
+ version: "2.0.1"
5
5
  ---
6
6
 
7
7
  <!-- Generated by BI Agent Superpowers. Edit src/content/skills/model-documenter.md instead. -->
@@ -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\", \"modeling mcp\", \"Power BI Desktop\", \"conectar Power BI\", \"can't connect to Power BI\"."
4
- version: "2.0.0"
4
+ version: "2.0.1"
5
5
  ---
6
6
 
7
7
  <!-- Generated by BI Agent Superpowers. Edit src/content/skills/pbi-connect.md instead. -->
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: "power-query"
3
3
  description: "Use when the user asks about Power Query Skill, especially phrases like \"Power Query\", \"query folding\", \"ETL\", \"source connection\", \"refresh\", \"parameters\"."
4
- version: "2.0.0"
4
+ version: "2.0.1"
5
5
  ---
6
6
 
7
7
  <!-- Generated by BI Agent Superpowers. Edit src/content/skills/power-query.md instead. -->
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: "project-kickoff"
3
3
  description: "Project Kickoff Skill: Project analysis and planning."
4
- version: "2.0.0"
4
+ version: "2.0.1"
5
5
  ---
6
6
 
7
7
  <!-- Generated by BI Agent Superpowers. Edit src/content/skills/project-kickoff.md instead. -->
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: "query-performance"
3
3
  description: "Use when the user asks about Query Performance Skill, especially phrases like \"slow\", \"DAX Studio\", \"taking too long\", \"reduce refresh time\", \"rendimiento\"."
4
- version: "2.0.0"
4
+ version: "2.0.1"
5
5
  ---
6
6
 
7
7
  <!-- Generated by BI Agent Superpowers. Edit src/content/skills/query-performance.md instead. -->
@@ -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 \"report design\", \"chart type\", \"IBCS\", \"accessibility\", \"mobile layout\", \"diseño de reporte\"."
4
- version: "2.0.0"
4
+ version: "2.0.1"
5
5
  ---
6
6
 
7
7
  <!-- Generated by BI Agent Superpowers. Edit src/content/skills/report-design.md instead. -->
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: "report-layout"
3
3
  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\"."
4
- version: "2.0.0"
4
+ version: "2.0.1"
5
5
  ---
6
6
 
7
7
  <!-- Generated by BI Agent Superpowers. Edit src/content/skills/report-layout.md instead. -->
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: "rls-design"
3
3
  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\"."
4
- version: "2.0.0"
4
+ version: "2.0.1"
5
5
  ---
6
6
 
7
7
  <!-- Generated by BI Agent Superpowers. Edit src/content/skills/rls-design.md instead. -->
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: "semantic-model"
3
3
  description: "Use when the user asks about Semantic Model Skill, especially phrases like \"semantic model\", \"TMDL\", \"DirectLake\", \"calculation group\", \"storage mode\", \"modelo semántico\"."
4
- version: "2.0.0"
4
+ version: "2.0.1"
5
5
  ---
6
6
 
7
7
  <!-- Generated by BI Agent Superpowers. Edit src/content/skills/semantic-model.md instead. -->
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: "testing-validation"
3
3
  description: "Use when the user asks about Testing & Validation Skill, especially phrases like \"test\", \"unit test DAX\", \"regression test\", \"deployment checklist\", \"data reconciliation\", \"pruebas\"."
4
- version: "2.0.0"
4
+ version: "2.0.1"
5
5
  ---
6
6
 
7
7
  <!-- Generated by BI Agent Superpowers. Edit src/content/skills/testing-validation.md instead. -->
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: "theme-tweaker"
3
3
  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\"."
4
- version: "2.0.0"
4
+ version: "2.0.1"
5
5
  ---
6
6
 
7
7
  <!-- Generated by BI Agent Superpowers. Edit src/content/skills/theme-tweaker.md instead. -->