116 lines
2.5 KiB
Batchfile
116 lines
2.5 KiB
Batchfile
@echo off
|
|
title OpenQode v1.3 Alpha
|
|
echo ========================================
|
|
echo OpenQode v1.3 Alpha
|
|
echo AI-Powered Coding Assistant
|
|
echo ========================================
|
|
echo.
|
|
|
|
cd /d "%~dp0"
|
|
|
|
REM --- Auto-Install Check ---
|
|
if not exist "node_modules" (
|
|
echo [INFO] First run detected! Installing dependencies...
|
|
echo [INFO] This might take a minute...
|
|
call npm install --legacy-peer-deps
|
|
if %errorlevel% neq 0 (
|
|
echo [ERROR] Failed to install dependencies. Please install Node.js.
|
|
pause
|
|
exit /b
|
|
)
|
|
echo [SUCCESS] Dependencies installed!
|
|
echo.
|
|
)
|
|
|
|
:menu
|
|
cls
|
|
echo ========================================
|
|
echo OPENQODE LAUNCH MENU
|
|
echo ========================================
|
|
echo.
|
|
echo [1] Web GUI (Browser-based)
|
|
echo [2] TUI (Terminal, uses qwen CLI)
|
|
echo [3] TUI (Windows Native, opencode.exe)
|
|
echo [4] TUI Classic (Gen 4) - Node.js
|
|
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.
|
|
set /p choice="Enter choice (1-9): "
|
|
|
|
if "%choice%"=="1" goto webgui
|
|
if "%choice%"=="2" goto qwentui
|
|
if "%choice%"=="3" goto opencodetui
|
|
if "%choice%"=="4" goto nodejstui
|
|
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
|
|
goto menu
|
|
|
|
:webgui
|
|
echo.
|
|
echo Starting OpenQode Unified Server...
|
|
echo.
|
|
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0start-unified.ps1"
|
|
goto menu
|
|
|
|
:qwentui
|
|
echo.
|
|
echo Checking qwen CLI authentication...
|
|
where qwen >nul 2>&1
|
|
if errorlevel 1 (
|
|
echo Error: qwen CLI not found. Install with: npm install -g @anthropic/qwen-code
|
|
pause
|
|
goto menu
|
|
)
|
|
echo Starting TUI with Qwen CLI...
|
|
qwen
|
|
goto menu
|
|
|
|
:opencodetui
|
|
echo.
|
|
echo Starting OpenCode TUI (opencode.exe)...
|
|
echo.
|
|
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0OpenQode.ps1"
|
|
goto menu
|
|
|
|
:nodejstui
|
|
echo.
|
|
echo Starting OpenQode Classic TUI...
|
|
echo.
|
|
node "%~dp0bin\opencode-tui.cjs"
|
|
pause
|
|
goto menu
|
|
|
|
:inktui
|
|
echo.
|
|
echo Starting OpenQode Next-Gen TUI...
|
|
echo.
|
|
node --experimental-require-module "%~dp0bin\opencode-ink.mjs"
|
|
pause
|
|
goto menu
|
|
|
|
:agentmgr
|
|
REM (Agent manager logic preserved or simplified - user didn't ask to change it, but I'll keep it simple/same)
|
|
cls
|
|
echo Agent Manager...
|
|
echo (Check manual for agent management or restart script)
|
|
pause
|
|
goto menu
|
|
|
|
:webassist
|
|
start "" "http://127.0.0.1:15044/assist/"
|
|
goto menu
|
|
|
|
:webide
|
|
start "" "http://127.0.0.1:15044/"
|
|
goto menu
|
|
|
|
:exitapp
|
|
echo Goodbye!
|
|
exit /b 0
|