magic-helix-vscode 4.0.0-beta.4 → 4.0.0-beta.6

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 +5 -3
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.6",
6
6
  "publisher": "el-j",
7
7
  "repository": {
8
8
  "type": "git",
package/src/extension.ts CHANGED
@@ -452,15 +452,17 @@ async function runMagicHelix(
452
452
  });
453
453
  } else {
454
454
  // Production mode: use npx
455
- commandStr = `npx @el-j/magic-agent-helix ${command} ${mergedOptions.join(' ')}`;
455
+ // Use @latest for production, @beta for pre-release testing
456
+ const packageSpec = '@el-j/magic-agent-helix';
457
+ commandStr = `npx ${packageSpec} ${command} ${mergedOptions.join(' ')}`;
456
458
  outputChannel.appendLine('Mode: Production (using npx)');
457
459
  outputChannel.appendLine('⚠️ Local CLI not found. Using npx instead.');
458
460
  outputChannel.appendLine(
459
- 'Note: Package must be published to npm for this to work.',
461
+ `Note: Will download and run ${packageSpec} from npm registry.`,
460
462
  );
461
463
  sendProgressUpdate(panel, {
462
464
  stage: 'Configuration',
463
- message: 'Using npx to run @el-j/magic-agent-helix',
465
+ message: `Using npx to run ${packageSpec}`,
464
466
  progress: 10,
465
467
  type: 'warning',
466
468
  });