Install any skill in seconds. Free to start, no credit card required.
Get Started Free →test on Windows, enterprise CA, corporate certificate, GPO cert, TLS fetch failed, Windows sandbox, daytona windows, self-hosted cert. Use when validating iPolloWork Windows enterprise TLS/OS-trust fixes in a Daytona Windows sandbox.
.claude/skills/devin-axis-daytona-windows-cert/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 41% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 87% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 125% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 146% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 154% | 0% |
Run the verified Windows repro for iPolloWork enterprise TLS behavior: install a fake corporate CA into the Windows machine store, serve healthy and broken HTTPS control planes, install a Windows build, and prove the desktop app and spawned runtimes use the operating system trust path.
Use this as the Windows companion to daytona-electron-test. Use fraimz when the result needs frame-by-frame proof, screenshots, or PR evidence. Reuse the repo support assets instead of copying their logic: scripts/support/setup-ipollowork-tls-repro.ps1, scripts/support/ipollowork-doctor.ps1, and docs/support/enterprise-network-doctor.md.
self-hosted cert path on Windows.
TLS fetch failed, fetch failed, or a certificate-specificfailure when connecting iPolloWork to a self-hosted control plane.
the OS trust bundle via NODE_EXTRA_CA_CERTS.
bashbrew upgrade daytonaio/cli/daytona brew link --overwrite daytona daytona version
gh must be authenticated to Devin-AXIS/iPolloWork and able to create/deletetemporary public prereleases.
materials out of the temporary release asset.
Windows sandboxes are VM-only and are created from Daytona's prebuilt windows snapshot. Available classes are windows-small (1 vCPU / 4 GB), windows-medium (2 vCPU / 8 GB), and windows-large (4 vCPU / 16 GB). The verified path used windows-medium:
bashdaytona create --snapshot windows-medium
The command prints a sandbox ID and a web terminal URL. Save the ID once:
bashSANDBOX_ID="<SANDBOX_ID>"
Windows sandboxes may auto-stop. Restart the sandbox before continuing:
bashdaytona sandbox start <ID>
Use the saved shell variable for later commands:
bashdaytona sandbox start "$SANDBOX_ID"
Important: daytona ssh <ID> is interactive-only and fails from scripts on the host-key prompt. Use this shape for setup commands instead:
bashdaytona exec <ID> -- <cmd>
For example:
bashdaytona exec "$SANDBOX_ID" -- whoami
daytona exec runs as nt authority\system in Windows session 0. That is useful for admin setup, but it cannot see the interactive VNC user's app UI, and $env:APPDATA resolves to the SYSTEM profile, not C:\Users\Administrator. Do not inspect app UI state, userData, or installed app settings through SYSTEM profile paths.
Human GUI access is: Daytona Dashboard -> sandbox -> ⋮ menu -> VNC -> Connect. Use exec for setup and logs; use VNC to drive the installed iPolloWork app and observe the user-visible result.
For large Windows builds, zip the build, attach it to a temporary public prerelease, and download it inside the VM with the Windows-bundled curl.exe and tar. The curl.exe 8.x and tar binaries ship in the Windows image.
From the repo root on the host, stage a zip that expands under C:\ow. Include the app build plus the support scripts from this repo so the VM reuses the checked-in harness:
bashTAG="ipollowork-win-cert-repro-$(date +%Y%m%d%H%M%S)" ZIP="/tmp/${TAG}.zip" # Put your Windows app build under /tmp/ipollowork-win-cert-upload/ipollowork/app # and include scripts/support/setup-ipollowork-tls-repro.ps1 plus # scripts/support/ipollowork-doctor.ps1 under ipollowork/scripts/support/. # Include .opencode/skills/daytona-windows-cert/scripts/ca-probe.js as # ipollowork/ca-probe.js. ditto -c -k --keepParent /tmp/ipollowork-win-cert-upload/ipollowork "$ZIP" gh release create "$TAG" "$ZIP" --repo Devin-AXIS/iPolloWork --prerelease
The release command shape from the verified session was:
bashgh release create <tag> <zip> --repo Devin-AXIS/iPolloWork --prerelease
Download and extract inside Windows:
bashDOWNLOAD_URL="https://github.com/Devin-AXIS/iPolloWork/releases/download/${TAG}/$(basename "$ZIP")" daytona exec "$SANDBOX_ID" -- cmd /c 'mkdir C:\ow 2>NUL' daytona exec "$SANDBOX_ID" -- cmd /c "curl.exe -L -o C:\ow\app.zip $DOWNLOAD_URL" daytona exec "$SANDBOX_ID" -- cmd /c 'tar -xf C:\ow\app.zip -C C:\ow'
The Windows download/extract shape from the verified session was:
bashdaytona exec "$SANDBOX_ID" -- cmd /c 'curl.exe -L -o C:\ow\app.zip <release-download-url>' daytona exec "$SANDBOX_ID" -- cmd /c 'tar -xf C:\ow\app.zip -C C:\ow'
If the zip only contains the app, fetch the support scripts from the same branch instead of rewriting them:
bashdaytona exec "$SANDBOX_ID" -- cmd /c 'mkdir C:\ow\ipollowork\scripts\support 2>NUL' daytona exec "$SANDBOX_ID" -- cmd /c 'curl.exe -L -o C:\ow\ipollowork\scripts\support\setup-ipollowork-tls-repro.ps1 https://raw.githubusercontent.com/Devin-AXIS/iPolloWork/dev/scripts/support/setup-ipollowork-tls-repro.ps1' daytona exec "$SANDBOX_ID" -- cmd /c 'curl.exe -L -o C:\ow\ipollowork\scripts\support\ipollowork-doctor.ps1 https://raw.githubusercontent.com/Devin-AXIS/iPolloWork/dev/scripts/support/ipollowork-doctor.ps1'
scripts/support/setup-ipollowork-tls-repro.ps1 creates a fake corporate root and intermediate, trusts the root in Cert:\LocalMachine\Root, maps poc.ipollowork.test to localhost, and serves:
https://poc.ipollowork.test:8443 — healthy chain.https://poc.ipollowork.test:9443 — broken chain with the intermediate removed.Do not run the listeners only inside a one-off daytona exec; the PowerShell listeners die when that exec session closes. Persist them with a scheduled task that runs as SYSTEM and keeps the session alive:
bashENCODED=$(python3 - <<'PY' import base64 script = r''' $ErrorActionPreference = "Stop" $repo = "C:\ow\ipollowork" $cmdPath = "C:\ow\start-ipollowork-tls-repro.cmd" $cmd = @" @echo off cd /d "$repo" powershell -NoProfile -ExecutionPolicy Bypass -File scripts\support\setup-ipollowork-tls-repro.ps1 powershell -NoProfile -ExecutionPolicy Bypass -Command "while (`$true) { Start-Sleep -Seconds 3600 }" "@ Set-Content -LiteralPath $cmdPath -Value $cmd -Encoding ASCII schtasks /create /f /sc onstart /ru SYSTEM /tn iPolloWorkTlsRepro /tr $cmdPath schtasks /run /tn iPolloWorkTlsRepro ''' print(base64.b64encode(script.encode("utf-16le")).decode()) PY ) daytona exec "$SANDBOX_ID" -- powershell -NoProfile -ExecutionPolicy Bypass -EncodedCommand "$ENCODED"
Verify the healthy listener is up:
bashdaytona exec "$SANDBOX_ID" -- cmd /c 'netstat -ano | findstr :8443'
Optional diagnostic output from the checked-in doctor script:
bashdaytona exec "$SANDBOX_ID" -- powershell -NoProfile -ExecutionPolicy Bypass -File 'C:\ow\ipollowork\scripts\support\ipollowork-doctor.ps1' -WebUrl https://poc.ipollowork.test:8443 -ApiUrl https://poc.ipollowork.test:9443 -ExpectedIssuerMatch "iPolloWork TLS Repro"
Copy .opencode/skills/daytona-windows-cert/scripts/ca-probe.js into the VM as C:\ow\ca-probe.js. Its contents are intentionally small and reusable:
bashdaytona exec "$SANDBOX_ID" -- cmd /c 'copy C:\ow\ipollowork\ca-probe.js C:\ow\ca-probe.js'
jsconst { X509Certificate } = require("node:crypto"); const tls = require("node:tls"); const needle = (process.env.IPOLLOWORK_TLS_REPRO_CA_MATCH || "iPolloWork TLS Repro").toLowerCase(); function countMatchingSubjects(certificates) { let count = 0; for (const pem of certificates) { try { const certificate = new X509Certificate(pem); if (certificate.subject.toLowerCase().includes(needle)) count += 1; } catch { // Ignore entries that are not parseable X.509 certificates. } } return count; } const system = tls.getCACertificates("system"); const bundled = tls.getCACertificates("default"); const result = { systemCount: system.length, reproInSystem: countMatchingSubjects(system), defaultCount: bundled.length, reproInDefault: countMatchingSubjects(bundled), }; console.log(JSON.stringify(result, null, 2)); if (result.reproInSystem === 0) { process.exitCode = 1; }
Run Electron in node mode. Adjust the executable path for your unpacked build or installed app:
bashdaytona exec "$SANDBOX_ID" -- cmd /c 'set ELECTRON_RUN_AS_NODE=1 && "C:\ow\ipollowork\app\iPolloWork.exe" C:\ow\ca-probe.js'
The verified result was:
json{"systemCount":42,"reproInSystem":6,"defaultCount":150,"reproInDefault":0}
This is the crucial #2562 verification for the GPO/enterprise-CA case: the Windows system store (LocalMachine\Root) contains the repro corporate CA, while the bundled Mozilla roots do not.
Drive the installed iPolloWork Windows app through VNC, not daytona exec.
https://poc.ipollowork.test:8443.The request should succeed.
https://poc.ipollowork.test:9443. The request should fail witha named certificate/chain error, not a vague fetch failed banner.
Use daytona-electron-test for normal Electron driving patterns and fraimz for captured proof if this is PR evidence.
The real Windows userData folder is:
textC:\Users\<User>\AppData\Roaming\com.differentai.ipollowork
It is not C:\Users\<User>\AppData\Roaming\iPolloWork. Because exec runs as SYSTEM, inspect the interactive user path explicitly:
bashdaytona exec "$SANDBOX_ID" -- cmd /c 'dir "C:\Users\Administrator\AppData\Roaming\com.differentai.ipollowork\system-ca-bundle.pem"' daytona exec "$SANDBOX_ID" -- cmd /c 'findstr /c:"iPolloWork TLS Repro" "C:\Users\Administrator\AppData\Roaming\com.differentai.ipollowork\system-ca-bundle.pem"'
Known gotcha: system-ca-bundle.pem is written once at first launch and then memoized. If a CA is added after first launch, restart the app before expecting it to appear. On real fleets the GPO CA is present at boot, so this usually does not bite customers.
cmd /cpayload:
bashdaytona exec "$SANDBOX_ID" -- cmd /c 'dir "C:\Users\Administrator\AppData\Roaming\com.differentai.ipollowork"'
| inside daytona exec ... -- powershell -Command '...' can beeaten by the intermediate cmd layer. Use powershell -EncodedCommand with a base64 UTF-16LE payload for anything with pipes or nested quotes:
bashENCODED=$(python3 - <<'PY' import base64 command = r'Get-ChildItem Cert:\LocalMachine\Root | Where-Object Subject -like "*iPolloWork TLS Repro*"' print(base64.b64encode(command.encode("utf-16le")).decode()) PY ) daytona exec "$SANDBOX_ID" -- powershell -NoProfile -ExecutionPolicy Bypass -EncodedCommand "$ENCODED"
%ERRORLEVEL% expands at parse time in cmd one-liners. Prefer PowerShell and$LASTEXITCODE when you need to propagate exit codes:
bashdaytona exec "$SANDBOX_ID" -- powershell -NoProfile -ExecutionPolicy Bypass -Command 'curl.exe --version; exit $LASTEXITCODE'
cmd /c plus timeout fails with "input redirection is not supported" underdaytona exec. Use ping -n for sleeps:
bashdaytona exec "$SANDBOX_ID" -- cmd /c 'ping -n 6 127.0.0.1 >NUL'
Stop the scheduled repro, remove the certificates/hosts/bindings through the checked-in setup script, delete the sandbox, and delete the temporary prerelease:
bashdaytona exec "$SANDBOX_ID" -- cmd /c 'schtasks /end /tn iPolloWorkTlsRepro' # Core repro cleanup shape: setup-ipollowork-tls-repro.ps1 -Cleanup daytona exec "$SANDBOX_ID" -- powershell -NoProfile -ExecutionPolicy Bypass -File 'C:\ow\ipollowork\scripts\support\setup-ipollowork-tls-repro.ps1' -Cleanup daytona sandbox delete <ID> gh release delete <tag> --yes
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-16 | pass→pass | 12,395 | 8,503 | -31% | 1 | 1 | 0% | 2,498 | 4,959 | +99% | 0 | 0 | — |
case-05 | pass→pass | 12,016 | 13,986 | +16% | 1 | 1 | 0% | 1,950 | 5,373 | +176% | 0 | 0 | — |
case-01 | fail→pass | 29,765 | 57,029 | +92% | 1 | 1 | 0% | 4,660 | 6,582 | +41% | 0 | 0 | — |
case-02 | fail→pass | 27,098 | 22,748 | -16% | 1 | 1 | 0% | 4,023 | 7,517 | +87% | 0 | 0 | — |
case-03 | fail→pass | 15,463 | 21,478 | +39% | 1 | 1 | 0% | 3,182 | 7,145 | +125% | 0 | 0 | — |
case-04 | pass→pass | 27,107 | 20,815 | -23% | 1 | 1 | 0% | 4,159 | 6,907 | +66% | 0 | 0 | — |
case-06 | fail→fail | 15,276 | 13,293 | -13% | 1 | 1 | 0% | 2,661 | 6,135 | +131% | 0 | 0 | — |
case-07 | fail→pass | 11,117 | 9,401 | -15% | 1 | 1 | 0% | 1,937 | 4,768 | +146% | 0 | 0 | — |
case-08 | fail→pass | 12,848 | 7,766 | -40% | 1 | 1 | 0% | 2,067 | 5,240 | +154% | 0 | 0 | — |
case-09 | pass→pass | 10,917 | 5,387 | -51% | 1 | 1 | 0% | 2,031 | 4,739 | +133% | 0 | 0 | — |
case-10 | pass→pass | 8,463 | 3,765 | -56% | 1 | 1 | 0% | 1,395 | 4,484 | +221% | 0 | 0 | — |
case-11 | fail→pass | 13,394 | 7,175 | -46% | 1 | 1 | 0% | 2,669 | 5,157 | +93% | 0 | 0 | — |
case-12 | fail→pass | 28,876 | 1,872 | -94% | 1 | 1 | 0% | 1,972 | 4,117 | +109% | 0 | 0 | — |
case-13 | pass→pass | 13,432 | 14,569 | +8% | 1 | 1 | 0% | 2,388 | 4,897 | +105% | 0 | 0 | — |
case-14 | fail→pass | 11,511 | 5,857 | -49% | 1 | 1 | 0% | 1,947 | 4,807 | +147% | 0 | 0 | — |
case-15 | pass→pass | 12,690 | 6,125 | -52% | 1 | 1 | 0% | 2,146 | 4,709 | +119% | 0 | 0 | — |
case-17 | fail→pass | 23,942 | 2,933 | -88% | 1 | 1 | 0% | 3,595 | 4,260 | +18% | 0 | 0 | — |
case-18 | fail→pass | 20,236 | 3,062 | -85% | 1 | 1 | 0% | 3,674 | 4,235 | +15% | 0 | 0 | — |
case-19 | fail→pass | 19,435 | 2,593 | -87% | 1 | 1 | 0% | 2,019 | 4,297 | +113% | 0 | 0 | — |
case-20 | fail→pass | 18,376 | 8,564 | -53% | 1 | 1 | 0% | 2,894 | 5,119 | +77% | 0 | 0 | — |
case-21 | fail→pass | 10,910 | 1,916 | -82% | 1 | 1 | 0% | 1,779 | 3,964 | +123% | 0 | 0 | — |
case-22 | fail→pass | 15,052 | 5,943 | -61% | 1 | 1 | 0% | 2,685 | 4,746 | +77% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted. The headline lift of +64 percentage points is the difference between those two pass rates over the 22 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.