magic-helix-vscode 4.0.0-beta.5 → 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 +7 -5
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",
5
+ "version": "4.0.0-beta.6",
6
6
  "publisher": "el-j",
7
7
  "repository": {
8
8
  "type": "git",
package/src/extension.ts CHANGED
@@ -451,16 +451,18 @@ async function runMagicHelix(
451
451
  type: 'info',
452
452
  });
453
453
  } else {
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)');
454
+ // Production mode: use npx
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(' ')}`;
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@beta',
465
+ message: `Using npx to run ${packageSpec}`,
464
466
  progress: 10,
465
467
  type: 'warning',
466
468
  });