vibecodingmachine-cli 2026.2.20-423 → 2026.2.20-436

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.
@@ -507,7 +507,6 @@ async function checkForUpdates() {
507
507
  // If running inside the repository (local development), skip update checks entirely
508
508
  const isDevWorkspace = fs.existsSync(path.join(rootDir, '.git'));
509
509
  if (isDevWorkspace) {
510
- console.log(chalk.yellow('\nDetected local development workspace; skipping update check.'));
511
510
  return;
512
511
  }
513
512
  // Additional check: if we're in a workspace with package.json containing vibecodingmachine-cli
@@ -516,7 +515,6 @@ async function checkForUpdates() {
516
515
  try {
517
516
  const pkg = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8'));
518
517
  if (pkg.name === 'vibecodingmachine' || (pkg.workspaces && pkg.workspaces.length > 0)) {
519
- console.log(chalk.yellow('\nDetected local development workspace; skipping update check.'));
520
518
  return;
521
519
  }
522
520
  } catch (e) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibecodingmachine-cli",
3
- "version": "2026.02.20-0423",
3
+ "version": "2026.02.20-0436",
4
4
  "description": "Command-line interface for Vibe Coding Machine - Autonomous development",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -53,7 +53,7 @@
53
53
  "react": "^19.2.0",
54
54
  "screenshot-desktop": "^1.15.3",
55
55
  "table": "^6.8.1",
56
- "vibecodingmachine-core": "^2026.02.20-0423"
56
+ "vibecodingmachine-core": "^2026.02.20-0436"
57
57
  },
58
58
  "devDependencies": {
59
59
  "eslint": "^8.57.0",
@@ -954,10 +954,12 @@ CRITICAL FOR IDE AGENTS: You MUST work through ALL configured stages (${stagesLi
954
954
 
955
955
  // If there was an error, pause so user can read the messages
956
956
  if (exitReason === 'error') {
957
- console.log(chalk.gray('\nPress Enter to return to menu...'));
958
- await new Promise(resolve => {
959
- process.stdin.once('data', () => resolve());
960
- });
957
+ const inquirer = require('inquirer');
958
+ await inquirer.prompt([{
959
+ type: 'input',
960
+ name: 'continue',
961
+ message: 'Press Enter to return to menu...'
962
+ }]);
961
963
  }
962
964
  }
963
965
  } else if (config.ide === 'claude-code') {
@@ -400,14 +400,11 @@ async function checkFirstRun() {
400
400
 
401
401
  console.log(chalk.cyan(t('interactive.press.any.key.menu')));
402
402
 
403
- await new Promise((resolve) => {
404
- process.stdin.setRawMode(true);
405
- process.stdin.resume();
406
- process.stdin.once('data', () => {
407
- process.stdin.setRawMode(false);
408
- resolve();
409
- });
410
- });
403
+ await inquirer.prompt([{
404
+ type: 'input',
405
+ name: 'continue',
406
+ message: 'Press Enter to continue...'
407
+ }]);
411
408
  }
412
409
 
413
410
  module.exports = { checkFirstRun };