Run Claude in an isolated Vercel Sandbox with full git access.
It uses the sandbox ID (sbx_asdfasdfasdf) as the branch name, so it's safe to push and then you can get your changes by pulling them from that branch
Test permissions are set up properly
| # Revert Claude Code to v2.1.68 | |
| # Fixes trust dialog bug on Windows (https://github.com/anthropics/claude-code/issues/31156) | |
| $binDir = Join-Path $env:USERPROFILE ".local\bin" | |
| $versionsDir = Join-Path $env:USERPROFILE ".local\share\claude\versions" | |
| $claudeExe = Join-Path $binDir "claude.exe" | |
| $targetVersion = "2.1.68" | |
| # Find the 2.1.68 binary - check versions dir first, then old backups | |
| $source = $null |