first commit

This commit is contained in:
2026-06-14 20:31:10 +08:00
parent c33b143176
commit 1ed3f576fa
51 changed files with 3362 additions and 810 deletions

12
run-backend.bat Normal file
View File

@@ -0,0 +1,12 @@
@echo off
rem ---- Config (edit if your sproutclaw path differs) ----
set SPROUTCLAW_DIR=D:\SmyProjects\AI\sproutclaw
set BACKEND_PORT=19133
rem -------------------------------------------------------
cd /d "%~dp0backend"
echo Starting Go backend on port %BACKEND_PORT%...
go run ./cmd/server --port %BACKEND_PORT% --agent-dir "%SPROUTCLAW_DIR%\.pi\agent" --pi-cmd "node %SPROUTCLAW_DIR%\packages\coding-agent\src\cli.ts"
echo.
pause >nul