Launchers: Added Smart Repair option to Windows and Linux/Mac menus

This commit is contained in:
Gemini AI
2025-12-14 13:27:47 +04:00
Unverified
parent 02b11d5397
commit e26aa43ef9
2 changed files with 16 additions and 5 deletions

View File

@@ -36,9 +36,10 @@ echo [5] ★ NEXT-GEN TUI (Gen 5) - Recommended!
echo [6] Agent Manager
echo [7] Web Assist Dashboard
echo [8] Web IDE (Alpha)
echo [9] Exit
echo [9] 🔧 Smart Repair (Fix TUI crashes)
echo [0] Exit
echo.
set /p choice="Enter choice (1-9): "
set /p choice="Enter choice (0-9): "
if "%choice%"=="1" goto webgui
if "%choice%"=="2" goto qwentui
@@ -48,7 +49,8 @@ if "%choice%"=="5" goto inktui
if "%choice%"=="6" goto agentmgr
if "%choice%"=="7" goto webassist
if "%choice%"=="8" goto webide
if "%choice%"=="9" goto exitapp
if "%choice%"=="9" goto smartrepair
if "%choice%"=="0" goto exitapp
goto menu
:webgui
@@ -110,6 +112,13 @@ goto menu
start "" "http://127.0.0.1:15044/"
goto menu
:smartrepair
echo.
echo Starting Smart Repair Agent...
echo.
node bin\smart-repair.mjs
goto menu
:exitapp
echo Goodbye!
exit /b 0