diff --git a/auto-setup.ps1 b/auto-setup.ps1 index 3757060..7543b79 100644 --- a/auto-setup.ps1 +++ b/auto-setup.ps1 @@ -1413,6 +1413,12 @@ if ($allOK -and $env:ANTHROPIC_API_KEY) { $splash.Close() $splash.Dispose() + # 启动 Bookworm — 带品牌标题的 PowerShell 窗口 + if (-not $SkipLaunch) { + $launchCmd = "title Bookworm Smart Assistant v$BWVersion && cd /d `"$BootDir`" && claude --dangerously-skip-permissions" + Start-Process -FilePath "cmd.exe" -ArgumentList "/k", $launchCmd + } + } else { Bw-Log "DONE" "安装完成但部分受限 allOK=$allOK hasKey=$($env:ANTHROPIC_API_KEY -ne $null)"