Initial Release: OpenQode Public Alpha v1.3

This commit is contained in:
Gemini AI
2025-12-14 00:40:14 +04:00
Unverified
commit 8e8d80c110
119 changed files with 31174 additions and 0 deletions

25
RUN_LEGACY.bat Normal file
View File

@@ -0,0 +1,25 @@
@echo off
TITLE OpenQode Classic TUI
CLS
ECHO ---------------------------------------------------
ECHO OPENQODE CLASSIC TUI LAUNCHER (Gen 4)
ECHO ---------------------------------------------------
ECHO.
IF NOT EXIST "node_modules" (
ECHO [INFO] First run detected! Installing dependencies...
ECHO [INFO] This might take a minute...
call npm install
IF %ERRORLEVEL% NEQ 0 (
ECHO [ERROR] Failed to install dependencies. Please install Node.js.
PAUSE
EXIT /B
)
ECHO [SUCCESS] Dependencies installed!
ECHO.
)
ECHO [INFO] Starting Classic Interface...
ECHO.
node bin/opencode-tui.cjs
PAUSE