-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinit.bat
More file actions
34 lines (30 loc) · 835 Bytes
/
init.bat
File metadata and controls
34 lines (30 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
@echo off
echo 🚀 MultiAgent Claude Quick Initializer
echo.
where node >nul 2>nul
if %errorlevel% neq 0 (
echo ❌ Node.js is required but not installed.
echo Please install Node.js from https://nodejs.org
exit /b 1
)
where claude >nul 2>nul
if %errorlevel% neq 0 (
echo ⚠️ Claude CLI not found. Installing...
npm install -g @anthropic-ai/claude-cli
)
echo Select initialization type:
echo 1) Standard multi-agent setup
echo 2) Memory-focused setup
echo 3) Setup with documentation import
echo.
set /p choice="Enter choice (1-3): "
if "%choice%"=="1" (
node cli\index.js init
) else if "%choice%"=="2" (
node cli\index.js init --memory-only
) else if "%choice%"=="3" (
node cli\index.js init --with-docs
) else (
echo Invalid choice. Running standard setup...
node cli\index.js init
)