Spaces:
Runtime error
Runtime error
File size: 16,486 Bytes
d4c6814 8a143d4 d4c6814 | 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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 | #Requires -Version 5.1
<#
.SYNOPSIS
Mission Control β Windows Installer
The mothership for your OpenClaw fleet.
.DESCRIPTION
Installs Mission Control on Windows via local Node.js deployment.
Mirrors the behaviour of install.sh for Linux/macOS.
.PARAMETER Mode
Deployment mode: "local" (default) or "docker".
.PARAMETER Port
Port the Next.js server listens on (default: 3000).
.PARAMETER DataDir
Custom data directory path (default: .data/ in project root).
.PARAMETER InstallDir
Target directory when cloning from GitHub (default: .\mission-control).
.PARAMETER SkipOpenClaw
Skip OpenClaw fleet checks.
.EXAMPLE
.\install.ps1
.\install.ps1 -Mode local -Port 8080
.\install.ps1 -Mode docker
.NOTES
PowerShell uses single-dash parameters: -Mode local, -Port 8080
Bash-style --local / --docker flags are NOT supported by PowerShell syntax.
#>
[CmdletBinding()]
param(
[ValidateSet("local", "docker")]
[string]$Mode = "",
[int]$Port = 3000,
[string]$DataDir = "",
[string]$InstallDir = "",
[switch]$SkipOpenClaw
)
Set-StrictMode -Version Latest
$ErrorActionPreference = "Stop"
# ββ Defaults ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if (-not $InstallDir) {
$InstallDir = if ($env:MC_INSTALL_DIR) { $env:MC_INSTALL_DIR } else { Join-Path (Get-Location) "mission-control" }
}
$RepoUrl = "https://github.com/builderz-labs/mission-control.git"
# ββ Helpers βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
function Write-MC { param([string]$Msg) Write-Host "[MC] $Msg" -ForegroundColor Blue }
function Write-Ok { param([string]$Msg) Write-Host "[OK] $Msg" -ForegroundColor Green }
function Write-Warn { param([string]$Msg) Write-Host "[!!] $Msg" -ForegroundColor Yellow }
function Write-Err { param([string]$Msg) Write-Host "[ERR] $Msg" -ForegroundColor Red }
function Stop-WithError { param([string]$Msg) Write-Err $Msg; exit 1 }
function Test-Command { param([string]$Name) $null -ne (Get-Command $Name -ErrorAction SilentlyContinue) }
function Get-RandomPassword {
param([int]$Length = 24)
$chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'
$rng = [System.Security.Cryptography.RandomNumberGenerator]::Create()
$bytes = New-Object byte[] $Length
$rng.GetBytes($bytes)
-join ($bytes | ForEach-Object { $chars[$_ % $chars.Length] })
}
function Get-RandomHex {
param([int]$Length = 32)
$bytes = New-Object byte[] ($Length / 2)
[System.Security.Cryptography.RandomNumberGenerator]::Create().GetBytes($bytes)
($bytes | ForEach-Object { $_.ToString("x2") }) -join ''
}
# ββ Prerequisites βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
function Test-Prerequisites {
$hasDocker = $false
$hasNode = $false
if (Test-Command "docker") {
docker info *>$null
if ($LASTEXITCODE -eq 0) {
$hasDocker = $true
$dockerVersion = (docker --version) -split "`n" | Select-Object -First 1
Write-Ok "Docker available ($dockerVersion)"
} else {
Write-Warn "Docker found but daemon is not running"
}
}
if (Test-Command "node") {
$nodeVersion = (node -v).TrimStart('v')
$nodeMajor = [int]($nodeVersion -split '\.')[0]
if ($nodeMajor -ge 22) {
$hasNode = $true
Write-Ok "Node.js v$nodeVersion available"
} else {
Write-Warn "Node.js v$nodeVersion found but v22+ required (LTS recommended)"
}
}
if (-not $hasDocker -and -not $hasNode) {
Stop-WithError "Either Docker or Node.js 22+ is required. Install one and retry."
}
# Auto-select deploy mode if not specified
if (-not $script:Mode) {
if ($hasDocker) {
$script:Mode = "docker"
Write-MC "Auto-selected Docker deployment (use -Mode local to override)"
} else {
$script:Mode = "local"
Write-MC "Auto-selected local deployment (Docker not available)"
}
}
# Validate chosen mode
if ($script:Mode -eq "docker" -and -not $hasDocker) {
Stop-WithError "Docker deployment requested but Docker is not available"
}
if ($script:Mode -eq "local" -and -not $hasNode) {
Stop-WithError "Local deployment requested but Node.js 22+ is not available"
}
if ($script:Mode -eq "local" -and -not (Test-Command "pnpm")) {
Write-MC "Installing pnpm via corepack..."
corepack enable
corepack prepare pnpm@latest --activate
Write-Ok "pnpm installed"
}
}
# ββ Clone or update repo βββββββββββββββββββββββββββββββββββββββββββββββββββββ
function Get-Source {
if (Test-Path (Join-Path $script:InstallDir ".git")) {
Write-MC "Updating existing installation at $($script:InstallDir)..."
Push-Location $script:InstallDir
try {
git fetch --tags
$latestTag = git describe --tags --abbrev=0 origin/main 2>$null
if ($latestTag) {
git checkout $latestTag
Write-Ok "Checked out $latestTag"
} else {
git pull origin main
Write-Ok "Updated to latest main"
}
} finally {
Pop-Location
}
} else {
Write-MC "Cloning Mission Control..."
if (-not (Test-Command "git")) {
Stop-WithError "git is required to clone the repository"
}
git clone --depth 1 $RepoUrl $script:InstallDir
Write-Ok "Cloned to $($script:InstallDir)"
}
}
# ββ Generate .env βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
function New-EnvFile {
$envPath = Join-Path $script:InstallDir ".env"
$examplePath = Join-Path $script:InstallDir ".env.example"
if (Test-Path $envPath) {
Write-MC "Existing .env found - keeping current configuration"
return
}
if (-not (Test-Path $examplePath)) {
Stop-WithError ".env.example not found at $examplePath"
}
Write-MC "Generating secure .env configuration..."
$authPass = Get-RandomPassword 24
$apiKey = Get-RandomHex 32
$authSecret = Get-RandomPassword 32
$content = Get-Content $examplePath -Raw
$content = $content -replace '(?m)^# AUTH_USER=.*', "AUTH_USER=admin"
$content = $content -replace '(?m)^# AUTH_PASS=.*', "AUTH_PASS=$authPass"
$content = $content -replace '(?m)^# API_KEY=.*', "API_KEY=$apiKey"
$content = $content -replace '(?m)^# AUTH_SECRET=.*', "AUTH_SECRET=$authSecret"
# Set port if non-default
if ($script:Port -ne 3000) {
$content = $content -replace '(?m)^# PORT=3000', "PORT=$($script:Port)"
}
$content | Set-Content $envPath -NoNewline
Write-Ok "Secure .env generated"
Write-Host ""
Write-Host " AUTH_USER: admin" -ForegroundColor Cyan
Write-Host " AUTH_PASS: $authPass" -ForegroundColor Cyan
Write-Host " API_KEY: $apiKey" -ForegroundColor Cyan
Write-Host ""
Write-Host " Save these credentials - they are not stored elsewhere." -ForegroundColor Yellow
Write-Host ""
}
# ββ Docker deployment βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
function Deploy-Docker {
Write-MC "Starting Docker deployment..."
Push-Location $script:InstallDir
try {
$env:MC_PORT = $script:Port
docker compose up -d --build
Write-MC "Waiting for Mission Control to become healthy..."
$retries = 30
while ($retries -gt 0) {
try {
$response = Invoke-WebRequest -Uri "http://localhost:$($script:Port)/login" -UseBasicParsing -TimeoutSec 2 -ErrorAction SilentlyContinue
if ($response.StatusCode -eq 200) { break }
} catch { }
Start-Sleep -Seconds 2
$retries--
}
if ($retries -eq 0) {
Write-Warn "Timeout waiting for health check - container may still be starting"
docker compose logs --tail 20
} else {
Write-Ok "Mission Control is running in Docker"
}
} finally {
Pop-Location
}
}
# ββ Local deployment ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
function Deploy-Local {
Write-MC "Starting local deployment..."
Push-Location $script:InstallDir
try {
pnpm install --frozen-lockfile 2>$null
if ($LASTEXITCODE -ne 0) { pnpm install }
Write-Ok "Dependencies installed"
Write-MC "Building Mission Control..."
pnpm build
if ($LASTEXITCODE -ne 0) { Stop-WithError "Build failed" }
Write-Ok "Build complete"
# Copy static assets into standalone directory (required by Next.js standalone mode)
$standaloneDir = Join-Path $script:InstallDir ".next" | Join-Path -ChildPath "standalone"
$standaloneNextDir = Join-Path $standaloneDir ".next"
$sourceStatic = Join-Path $script:InstallDir ".next" | Join-Path -ChildPath "static"
$destStatic = Join-Path $standaloneNextDir "static"
$sourcePublic = Join-Path $script:InstallDir "public"
$destPublic = Join-Path $standaloneDir "public"
if (Test-Path $sourceStatic) {
if (Test-Path $destStatic) { Remove-Item $destStatic -Recurse -Force }
Copy-Item $sourceStatic $destStatic -Recurse
}
if (Test-Path $sourcePublic) {
if (Test-Path $destPublic) { Remove-Item $destPublic -Recurse -Force }
Copy-Item $sourcePublic $destPublic -Recurse
}
Write-Ok "Static assets copied to standalone directory"
Write-MC "Starting Mission Control..."
$env:PORT = $script:Port
$env:NODE_ENV = "production"
$env:HOSTNAME = "0.0.0.0"
$dataPath = Join-Path $script:InstallDir ".data"
$logPath = Join-Path $dataPath "mc.log"
$errLogPath = Join-Path $dataPath "mc-err.log"
$pidPath = Join-Path $dataPath "mc.pid"
$serverJs = Join-Path $standaloneDir "server.js"
$process = Start-Process -FilePath "cmd.exe" `
-ArgumentList "/c node `"$serverJs`" > `"$logPath`" 2> `"$errLogPath`"" `
-WorkingDirectory $script:InstallDir `
-WindowStyle Hidden `
-PassThru
$process.Id | Set-Content $pidPath
Start-Sleep -Seconds 3
if (-not $process.HasExited) {
Write-Ok "Mission Control running (PID $($process.Id))"
} else {
Write-Err "Failed to start. Check logs: $logPath"
exit 1
}
} finally {
Pop-Location
}
}
# ββ OpenClaw fleet check βββββββββββββββββββββββββββββββββββββββββββββββββββββ
function Test-OpenClaw {
if ($SkipOpenClaw) {
Write-MC "Skipping OpenClaw checks (-SkipOpenClaw)"
return
}
Write-Host ""
Write-MC "=== OpenClaw Fleet Check ==="
if (Test-Command "openclaw") {
$ocVersion = try { openclaw --version 2>$null } catch { "unknown" }
Write-Ok "OpenClaw binary found: $ocVersion"
} elseif (Test-Command "clawdbot") {
$cbVersion = try { clawdbot --version 2>$null } catch { "unknown" }
Write-Ok "ClawdBot binary found: $cbVersion (legacy)"
Write-Warn "Consider upgrading to openclaw CLI"
} else {
Write-MC "OpenClaw CLI not found - install it to enable agent orchestration"
Write-MC " See: https://github.com/builderz-labs/openclaw"
return
}
# Check OpenClaw home directory
$ocHome = if ($env:OPENCLAW_HOME) { $env:OPENCLAW_HOME } else { Join-Path $HOME ".openclaw" }
if (Test-Path $ocHome) {
Write-Ok "OpenClaw home: $ocHome"
$ocConfig = Join-Path $ocHome "openclaw.json"
if (Test-Path $ocConfig) {
Write-Ok "Config found: $ocConfig"
} else {
Write-Warn "No openclaw.json found at $ocConfig"
Write-MC "Mission Control will create a default config on first gateway connection"
}
} else {
Write-MC "OpenClaw home not found at $ocHome"
Write-MC "Set OPENCLAW_HOME in .env to point to your OpenClaw state directory"
}
# Check gateway port
$gwHost = if ($env:OPENCLAW_GATEWAY_HOST) { $env:OPENCLAW_GATEWAY_HOST } else { "127.0.0.1" }
$gwPort = if ($env:OPENCLAW_GATEWAY_PORT) { [int]$env:OPENCLAW_GATEWAY_PORT } else { 18789 }
try {
$tcp = New-Object System.Net.Sockets.TcpClient
$tcp.Connect($gwHost, $gwPort)
$tcp.Close()
Write-Ok "Gateway reachable at ${gwHost}:${gwPort}"
} catch {
Write-MC "Gateway not reachable at ${gwHost}:${gwPort} (start it with: openclaw gateway start)"
}
}
# ββ Main ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
function Main {
Write-Host ""
Write-Host " +======================================+" -ForegroundColor Magenta
Write-Host " | Mission Control Installer |" -ForegroundColor Magenta
Write-Host " | The mothership for your fleet |" -ForegroundColor Magenta
Write-Host " +======================================+" -ForegroundColor Magenta
Write-Host ""
$arch = if ([Environment]::Is64BitOperatingSystem) { "x64" } else { "x86" }
Write-Ok "Detected Windows/$arch"
Test-Prerequisites
# If running from within an existing clone, use current dir
$packageJson = Join-Path (Get-Location) "package.json"
if ((Test-Path $packageJson) -and (Select-String -Path $packageJson -Pattern '"mission-control"' -Quiet)) {
$script:InstallDir = (Get-Location).Path
Write-MC "Running from existing clone at $($script:InstallDir)"
} else {
Get-Source
}
# Ensure data directory exists
$dataDir = Join-Path $script:InstallDir ".data"
if (-not (Test-Path $dataDir)) {
New-Item -ItemType Directory -Path $dataDir -Force | Out-Null
}
New-EnvFile
switch ($Mode) {
"docker" { Deploy-Docker }
"local" { Deploy-Local }
default { Stop-WithError "Unknown deploy mode: $Mode" }
}
Test-OpenClaw
# ββ Print summary ββ
Write-Host ""
Write-Host " +======================================+" -ForegroundColor Green
Write-Host " | Installation Complete |" -ForegroundColor Green
Write-Host " +======================================+" -ForegroundColor Green
Write-Host ""
Write-MC "Dashboard: http://localhost:$Port"
Write-MC "Mode: $Mode"
Write-MC "Data: $(Join-Path $script:InstallDir '.data')"
Write-Host ""
Write-MC "Credentials are in: $(Join-Path $script:InstallDir '.env')"
Write-Host ""
if ($Mode -eq "docker") {
Write-MC "Manage:"
Write-MC " docker compose logs -f # view logs"
Write-MC " docker compose restart # restart"
Write-MC " docker compose down # stop"
} else {
$mcDataPath = Join-Path $script:InstallDir ".data"
$pidPath = Join-Path $mcDataPath "mc.pid"
$logPath = Join-Path $mcDataPath "mc.log"
Write-MC "Manage:"
Write-MC " Get-Content '$logPath' -Tail 50 # view logs"
Write-MC " Stop-Process -Id (Get-Content '$pidPath') # stop"
}
Write-Host ""
}
Main |