This commit is contained in:
Auto
2025-12-30 11:56:39 +02:00
parent dd7c1ddd82
commit a2efec159d
40 changed files with 9112 additions and 3 deletions

23
start_ui.bat Normal file
View File

@@ -0,0 +1,23 @@
@echo off
REM Autonomous Coder UI Launcher for Windows
REM This script launches the web UI for the autonomous coding agent.
echo.
echo ====================================
echo Autonomous Coder UI
echo ====================================
echo.
REM Check if Python is available
where python >nul 2>&1
if %ERRORLEVEL% neq 0 (
echo ERROR: Python not found in PATH
echo Please install Python from https://python.org
pause
exit /b 1
)
REM Run the Python launcher
python "%~dp0start_ui.py" %*
pause