magic-helix-vscode 4.0.0-beta.4 → 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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. 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.4",
5
+ "version": "4.0.0-beta.5",
6
6
  "publisher": "el-j",
7
7
  "repository": {
8
8
  "type": "git",
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
  });