Add minimal add-in playgrounds and orchestrator

This commit is contained in:
2025-12-07 21:26:10 -06:00
parent 40bcd939ff
commit ca95d296b5
54 changed files with 13165 additions and 26764 deletions
@@ -0,0 +1,11 @@
$ErrorActionPreference = 'Continue'
while ($true) {
$t = (Get-Date).ToString('o')
try {
$r = curl.exe -k https://localhost:3001/health 2>&1
Write-Output "$t - $r"
} catch {
Write-Output "$t - ERROR: $_"
}
Start-Sleep -Seconds 10
}