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.
- package/bin/vibecodingmachine.js +0 -2
- package/package.json +2 -2
- package/src/commands/auto.js +6 -4
- package/src/utils/first-run.js +5 -8
- package/src/utils/interactive.js +3518 -25
- package/src/utils/provider-manager.js +6 -3
- package/src/utils/requirements-navigator.js +6 -4
- package/src/utils/trui-navigation.js +2 -0
- package/src/utils/trui-quick-menu.js +8 -3
- package/src/utils/trui-req-tree.js +1 -1
- package/src/utils/trui-windsurf.js +20 -6
package/bin/vibecodingmachine.js
CHANGED
|
@@ -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-
|
|
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-
|
|
56
|
+
"vibecodingmachine-core": "^2026.02.20-0436"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"eslint": "^8.57.0",
|
package/src/commands/auto.js
CHANGED
|
@@ -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
|
-
|
|
958
|
-
await
|
|
959
|
-
|
|
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') {
|
package/src/utils/first-run.js
CHANGED
|
@@ -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
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
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 };
|