magic-helix-vscode 4.0.0-beta.3 → 4.0.0-beta.5
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/package.json +4 -3
- package/src/extension.ts +4 -4
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "magic-helix-vscode",
|
|
3
3
|
"displayName": "MagicAgentHelix Runner",
|
|
4
4
|
"description": "Advanced VS Code extension for running MagicAgentHelix CLI with AI-powered refinement, command history, favorites, workspace configuration, and progress tracking.",
|
|
5
|
-
"version": "4.0.0-beta.
|
|
5
|
+
"version": "4.0.0-beta.5",
|
|
6
6
|
"publisher": "el-j",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -296,8 +296,9 @@
|
|
|
296
296
|
}
|
|
297
297
|
},
|
|
298
298
|
"scripts": {
|
|
299
|
-
"
|
|
300
|
-
"
|
|
299
|
+
"clean": "rm -rf dist tsconfig.tsbuildinfo",
|
|
300
|
+
"build": "npm run clean && tsc",
|
|
301
|
+
"package": "npm run build && vsce package --no-yarn"
|
|
301
302
|
},
|
|
302
303
|
"dependencies": {
|
|
303
304
|
"@el-j/magic-helix-core": "*",
|
package/src/extension.ts
CHANGED
|
@@ -451,16 +451,16 @@ async function runMagicHelix(
|
|
|
451
451
|
type: 'info',
|
|
452
452
|
});
|
|
453
453
|
} else {
|
|
454
|
-
// Production mode: use npx
|
|
455
|
-
commandStr = `npx @el-j/magic-agent-helix ${command} ${mergedOptions.join(' ')}`;
|
|
456
|
-
outputChannel.appendLine('Mode: Production (using npx)');
|
|
454
|
+
// Production mode: use npx with @beta tag
|
|
455
|
+
commandStr = `npx @el-j/magic-agent-helix@beta ${command} ${mergedOptions.join(' ')}`;
|
|
456
|
+
outputChannel.appendLine('Mode: Production (using npx @beta)');
|
|
457
457
|
outputChannel.appendLine('⚠️ Local CLI not found. Using npx instead.');
|
|
458
458
|
outputChannel.appendLine(
|
|
459
459
|
'Note: Package must be published to npm for this to work.',
|
|
460
460
|
);
|
|
461
461
|
sendProgressUpdate(panel, {
|
|
462
462
|
stage: 'Configuration',
|
|
463
|
-
message: 'Using npx to run @el-j/magic-agent-helix',
|
|
463
|
+
message: 'Using npx to run @el-j/magic-agent-helix@beta',
|
|
464
464
|
progress: 10,
|
|
465
465
|
type: 'warning',
|
|
466
466
|
});
|