20 lines
538 B
Batchfile
20 lines
538 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
echo [1/3] Updating Git Submodules...
|
|
git submodule update --init --recursive
|
|
|
|
echo [2/3] Bypassing PowerShell and Installing AI Local Dependencies...
|
|
cd .agent\env
|
|
call npm install
|
|
cd ..\..
|
|
|
|
echo [3/3] Installing Universal AI Workflow Tool (get-shit-done-cc) Globally...
|
|
call npm install -g get-shit-done-cc@latest
|
|
|
|
echo.
|
|
echo ========================================================
|
|
echo [OK] Zero-Click Bootstrap Complete. AI Agents are ready!
|
|
echo ========================================================
|
|
endlocal
|