@luquimbo/bi-superpowers 3.1.0 → 3.1.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.
- 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/README.md +2 -2
- package/bin/commands/install.test.js +2 -2
- package/bin/lib/agents.js +2 -2
- package/bin/lib/mcp-config.js +5 -2
- package/bin/lib/mcp-config.test.js +1 -1
- package/package.json +1 -1
- package/skills/pbi-connect/SKILL.md +1 -1
- package/skills/project-kickoff/SKILL.md +1 -1
|
@@ -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": "3.1.
|
|
9
|
+
"version": "3.1.1",
|
|
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": "3.1.
|
|
4
|
+
"version": "3.1.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/README.md
CHANGED
|
@@ -55,10 +55,10 @@ Reiniciá tu agente AI, y ya tenés bi-superpowers funcionando.
|
|
|
55
55
|
| Agente | Skills | MCP config path |
|
|
56
56
|
|---|---|---|
|
|
57
57
|
| **Claude Code** | ✅ `~/.claude/skills/` | `~/.claude.json` |
|
|
58
|
-
| **GitHub Copilot** | ✅ `~/.
|
|
58
|
+
| **GitHub Copilot** | ✅ `~/.copilot/skills/` | `~/.copilot/mcp-config.json` |
|
|
59
59
|
| **Codex (OpenAI)** | ✅ `~/.agents/skills/` | `~/.codex/config.toml` |
|
|
60
60
|
| **Gemini CLI** | ✅ `~/.gemini/skills/` | `~/.gemini/settings.json` |
|
|
61
|
-
| **Kilo Code** | ✅ `~/.
|
|
61
|
+
| **Kilo Code** | ✅ `~/.kilo/skills/` | `~/.kilo/mcp_settings.json` |
|
|
62
62
|
|
|
63
63
|
`super install` escribe todo esto automáticamente.
|
|
64
64
|
|
|
@@ -110,7 +110,7 @@ describe('install command - detectAgents', () => {
|
|
|
110
110
|
|
|
111
111
|
test('detects multiple agents', () => {
|
|
112
112
|
fs.mkdirSync(path.join(tempDir, '.claude'), { recursive: true });
|
|
113
|
-
fs.mkdirSync(path.join(tempDir, '.
|
|
113
|
+
fs.mkdirSync(path.join(tempDir, '.copilot'), { recursive: true });
|
|
114
114
|
fs.mkdirSync(path.join(tempDir, '.gemini'), { recursive: true });
|
|
115
115
|
const detected = detectAgents(tempDir);
|
|
116
116
|
assert.ok(detected.includes('claude-code'));
|
|
@@ -270,7 +270,7 @@ describe('install command - integration: --all --yes', () => {
|
|
|
270
270
|
path.join(tempHome, '.copilot', 'mcp-config.json'),
|
|
271
271
|
path.join(tempHome, '.codex', 'config.toml'),
|
|
272
272
|
path.join(tempHome, '.gemini', 'settings.json'),
|
|
273
|
-
path.join(tempHome, '.
|
|
273
|
+
path.join(tempHome, '.kilo', 'mcp_settings.json'),
|
|
274
274
|
];
|
|
275
275
|
for (const filePath of expectedMcpFiles) {
|
|
276
276
|
assert.ok(fs.existsSync(filePath), `expected MCP config at ${filePath}`);
|
package/bin/lib/agents.js
CHANGED
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
* Object insertion order matters — the installer renders the list in this order.
|
|
25
25
|
*/
|
|
26
26
|
const AGENTS = {
|
|
27
|
-
'github-copilot': { name: 'GitHub Copilot', dir: '.
|
|
27
|
+
'github-copilot': { name: 'GitHub Copilot', dir: '.copilot/skills' },
|
|
28
28
|
'claude-code': { name: 'Claude Code', dir: '.claude/skills' },
|
|
29
29
|
codex: { name: 'Codex (OpenAI)', dir: '.agents/skills' },
|
|
30
30
|
'gemini-cli': { name: 'Gemini CLI', dir: '.gemini/skills' },
|
|
31
|
-
kilo: { name: 'Kilo Code', dir: '.
|
|
31
|
+
kilo: { name: 'Kilo Code', dir: '.kilo/skills' },
|
|
32
32
|
};
|
|
33
33
|
|
|
34
34
|
/**
|
package/bin/lib/mcp-config.js
CHANGED
|
@@ -154,8 +154,11 @@ const JSON_AGENT_CONFIGS = {
|
|
|
154
154
|
httpField: 'httpUrl',
|
|
155
155
|
},
|
|
156
156
|
kilo: {
|
|
157
|
-
// Kilo uses the
|
|
158
|
-
|
|
157
|
+
// Kilo Code uses ~/.kilo/ as the user config root (consistent with
|
|
158
|
+
// ~/.kilo/skills/). The global MCP settings live at the natural
|
|
159
|
+
// neighbor path — mcp_settings.json — which is what the Kilo VS Code
|
|
160
|
+
// extension and CLI both read.
|
|
161
|
+
configPath: () => path.join(os.homedir(), '.kilo', 'mcp_settings.json'),
|
|
159
162
|
wrapperKey: 'mcpServers',
|
|
160
163
|
stdioIncludesType: false,
|
|
161
164
|
httpIncludesType: false,
|
|
@@ -154,7 +154,7 @@ describe('MCP writers — JSON agents', () => {
|
|
|
154
154
|
test('kilo writer uses url (standard)', () => {
|
|
155
155
|
const configPath = MCP_WRITERS.kilo(fakePkgDir);
|
|
156
156
|
|
|
157
|
-
assert.strictEqual(configPath, path.join(tempHome, '.
|
|
157
|
+
assert.strictEqual(configPath, path.join(tempHome, '.kilo', 'mcp_settings.json'));
|
|
158
158
|
const config = JSON.parse(fs.readFileSync(configPath, 'utf8'));
|
|
159
159
|
assert.ok(config.mcpServers);
|
|
160
160
|
assert.strictEqual(config.mcpServers[LEARN_SERVER_NAME].url, MICROSOFT_LEARN_URL);
|
package/package.json
CHANGED
|
@@ -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: "3.1.
|
|
4
|
+
version: "3.1.1"
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
<!-- Generated by BI Agent Superpowers. Edit src/content/skills/pbi-connect.md instead. -->
|