Misc changes

Update gitignore + adding some agent skills and tweaking workflows.
Also updated some scipts
This commit is contained in:
2026-01-20 22:14:54 -05:00
parent f11f02d0c7
commit d2b91c46d4
7 changed files with 18 additions and 12 deletions

3
misc/agent_build.bat Normal file
View File

@@ -0,0 +1,3 @@
@echo off
call misc\shell.bat
fbuild %* -cache

View File

@@ -55,14 +55,8 @@ echo Config: %CONFIG%
:: --- 4. Execution ---
if exist "%APP_DIR%\%APP_EXE%" (
pushd "%APP_DIR%"
start "" "%APP_EXE%"
"%APP_EXE%" %*
popd
if "%AUTOCLOSE%"=="1" (
echo [AUTOCLOSE] Waiting 5 seconds...
timeout /t 5 /nobreak >nul
taskkill /IM "%APP_EXE%" /F >nul 2>&1
)
) else (
echo [ERROR] Executable not found at: %APP_DIR%\%APP_EXE%
echo Please build first: fbuild JulietApp-%PLATFORM%-%CONFIG%