Command: powershell -NoProfile -Command "$ErrorActionPreference='Stop';$src='C:\Users\ash\Documents\Codex\2026-08-26\worked-for-1m-5s-inference-ya';$dst='C:\Users\ash\Documents\Codex\2026-08-26\LaptopBridge-DEV';if(Test-Path -LiteralPath $dst){throw 'DEV_BRIDGE_ALREADY_EXISTS'};New-Item -ItemType Directory -Path $dst|Out-Null;Get-ChildItem -LiteralPath $src -File -Force|Where-Object{$_.Name -ne 'config.json' -and $_.Extension -ne '.zip' -and -not $_.Name.EndsWith('.bak')}|ForEach-Object{Copy-Item -LiteralPath $_.FullName -Destination (Join-Path $dst $_.Name)};foreach($d in @('apps-script','discovery-worker')){if(Test-Path (Join-Path $src $d)){Copy-Item -LiteralPath (Join-Path $src $d) -Destination (Join-Path $dst $d) -Recurse}};foreach($d in @('projects','bridge-data','bridge-inbox','bridge-output','.bridge-trash')){New-Item -ItemType Directory -Force -Path (Join-Path $dst $d)|Out-Null};$readme=@('LaptopBridge Development Copy','Created: 2026-08-31','Production: '+$src,'Development: '+$dst,'STATUS: STOPPED / NOT AUTO-STARTED','Production config.json and runtime state were intentionally NOT copied.','Do not point this copy at production inbox/results/ports until an isolated dev configuration is created.','Develop and test here; promote verified changes to Production only when no production job is active.');Set-Content -LiteralPath (Join-Path $dst 'DEV_BRIDGE.md') -Value $readme -Encoding UTF8;$files=Get-ChildItem -LiteralPath $dst -File -Recurse;$bytes=($files|Measure-Object Length -Sum).Sum;[pscustomobject]@{ok=$true;production=$src;development=$dst;file_count=$files.Count;bytes=$bytes;megabytes=[math]::Round($bytes/1MB,3);config_copied=(Test-Path (Join-Path $dst 'config.json'));status='STOPPED'}|ConvertTo-Json -Compress"
Directory: projects
Status: SUCCESS
Exit code: 0
Cancel Job Rerun Command Refresh
{"ok":true,"production":"C:\\Users\\ash\\Documents\\Codex\\2026-08-26\\worked-for-1m-5s-inference-ya","development":"C:\\Users\\ash\\Documents\\Codex\\2026-08-26\\LaptopBridge-DEV","file_count":1548,"bytes":127437336,"megabytes":121.534,"config_copied":false,"status":"STOPPED"}