Add build script

This commit is contained in:
Muzhen Gaming
2025-10-15 22:54:03 +08:00
parent be07225cd1
commit 527c97fefc
6 changed files with 167 additions and 7 deletions

View File

@@ -2,20 +2,63 @@ $ErrorActionPreference = 'Stop'
# Simple, IEX-safe bootstrapper (no param / CmdletBinding)
# Usage (copy/paste):
# iwr -useb https://git.meoww.cc/admin/openai-code-script-poc/raw/branch/master/bootstrap-lite.ps1 | iex
# iwr -useb https://git.meoww.cc/admin/openai-code-script-poc/raw/branch/master/bootstrap.ps1 | iex
# Optional: set OPENAI_API_KEY in the same command before piping.
$ZipUrl = 'https://git.meoww.cc/admin/openai-code-script-poc/archive/master.zip'
function Test-PythonAvailable {
try { & py -3 -V *> $null; return $true } catch {}
try { & python -V *> $null; return $true } catch {}
try { & python3 -V *> $null; return $true } catch {}
return $false
}
function Start-Binary {
param(
[string]$DestDir,
[string]$BinaryUrl
)
if (!(Test-Path $DestDir)) { New-Item -ItemType Directory -Path $DestDir | Out-Null }
$exePath = Join-Path $DestDir 'BgVisionAgent.exe'
Write-Host "Downloading binary from $BinaryUrl ..." -ForegroundColor DarkCyan
iwr -useb $BinaryUrl -OutFile $exePath
Write-Host "Launching BgVisionAgent.exe ..." -ForegroundColor Green
Start-Process -FilePath $exePath -WindowStyle Hidden
Write-Host "Agent started. Hotkeys:" -ForegroundColor Green
Write-Host " Alt+Shift+1 -> Capture active window"
Write-Host " Alt+Shift+2 -> Send to OpenAI"
Write-Host " Alt+Shift+3 -> Action 3 (type or clipboard mode)"
Write-Host " Alt+Shift+4 -> Reset state"
Write-Host " Alt+Shift+5 -> Quit (press 3 times quickly)"
Write-Host " Alt+Shift+6 -> Switch modes for Action 3"
Write-Host "Configure API key in bg_agent/config.py (if using source) or set OPENAI_API_KEY env var." -ForegroundColor Yellow
}
$ZipUrl = 'https://git.meoww.cc/admin/openai-code-script-poc/archive/master.zip'
$BinaryUrl = $env:BG_BINARY_URL
if (-not $BinaryUrl) { $BinaryUrl = 'https://git.meoww.cc/admin/openai-code-script-poc/raw/branch/master/bin/BgVisionAgent.exe' }
$Dest = Join-Path $env:USERPROFILE 'BgVisionAgent'
$Force = ($env:BG_FORCE -eq '1' -or $env:BG_FORCE -eq 'true')
$UseBin = ($env:BG_USE_BINARY -eq '1' -or $env:BG_USE_BINARY -eq 'true')
Write-Host "Bootstrap (lite): preparing -> $Dest" -ForegroundColor Cyan
Write-Host "Bootstrap: preparing -> $Dest" -ForegroundColor Cyan
if (Test-Path $Dest) {
if ($Force) {
Write-Host "Removing existing destination (BG_FORCE=1)..." -ForegroundColor DarkYellow
Remove-Item $Dest -Recurse -Force
}
}
# Prefer prebuilt binary when requested or when Python isn't available
if ($UseBin -or -not (Test-PythonAvailable)) {
try {
Start-Binary -DestDir $Dest -BinaryUrl $BinaryUrl
return
} catch {
Write-Host "Binary path failed; falling back to source ZIP path..." -ForegroundColor DarkYellow
}
}
if (!(Test-Path $Dest)) { New-Item -ItemType Directory -Path $Dest | Out-Null }
$root = $Dest
@@ -40,5 +83,4 @@ try {
powershell -NoProfile -ExecutionPolicy Bypass -File .\run.ps1
}
Write-Host "Bootstrap (lite) completed." -ForegroundColor Green
Write-Host "Bootstrap completed." -ForegroundColor Green