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

21
start-unified.bat Normal file
View File

@@ -0,0 +1,21 @@
@echo off
title OpenQode Unified Startup
echo OpenQode Unified Startup v1.01
echo ===============================
echo.
REM Check if PowerShell is available
powershell -Command "Get-Command Get-Process" >nul 2>&1
if errorlevel 1 (
echo [ERROR] PowerShell is required but not found.
pause
exit /b 1
)
REM Run the unified startup PowerShell script
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0start-unified.ps1"
echo.
echo OpenQode startup completed.
pause