Command: powershell -NoProfile -Command "$root='C:\Users\ash\Documents\Codex\2026-08-26\LaptopBridge-DEV'; Write-Output '---START-PS1---'; Get-Content (Join-Path $root 'start-dev-bridge.ps1'); Write-Output '---LAUNCHER---'; Get-Content (Join-Path $root 'dev_bridge_launcher.py'); Write-Output '---RECENT-BRIDGE-DATA---'; Get-ChildItem (Join-Path $root 'bridge-data') -File | Sort-Object LastWriteTime -Descending | Select-Object -First 15 Name,Length,LastWriteTime | Format-Table -AutoSize"
Directory: projects
Status: SUCCESS
Exit code: 0
Cancel Job Rerun Command Refresh
---START-PS1---
$ErrorActionPreference = "Stop"
$root = Split-Path -Parent $MyInvocation.MyCommand.Path
$env:CHATGPT_BRIDGE_DRIVE_ROOT = "G:\My Drive\ChatGPT Bridge Data\dev-bridge"
$existing = Get-NetTCPConnection -LocalPort 8766 -State Listen -ErrorAction SilentlyContinue
if ($existing) { Write-Output "DEV_BRIDGE_ALREADY_RUNNING"; exit 0 }
$python = (Get-Command python.exe -ErrorAction Stop).Source
$data = Join-Path $root "bridge-data"
New-Item -ItemType Directory -Force -Path $data | Out-Null
Start-Process -FilePath $python -ArgumentList "dev_bridge_launcher.py" -WorkingDirectory $root -WindowStyle Hidden -RedirectStandardOutput (Join-Path $data "dev-bridge.stdout.log") -RedirectStandardError (Join-Path $data "dev-bridge.stderr.log")
Write-Output "DEV_BRIDGE_START_REQUESTED"
---LAUNCHER---
import os, runpy
from pathlib import Path
os.environ["CHATGPT_BRIDGE_DRIVE_ROOT"] = r"G:\My Drive\ChatGPT Bridge Data\dev-bridge"
runpy.run_path(str(Path(__file__).with_name("bridge.py")), run_name="__main__")
---RECENT-BRIDGE-DATA---
Name Length LastWriteTime
---- ------ -------------
restart-ha1.log 181 8/31/2026 1:25:17 PM
audit.log 24844 8/31/2026 1:24:41 PM
dev-bridge.stderr.log 32771 8/31/2026 1:24:41 PM
access.log 26212 8/31/2026 1:24:41 PM
dev-bridge.stdout.log 0 8/31/2026 12:52:54 PM
human-assistant.enabled 14 8/31/2026 12:47:06 PM
secret.txt 34 8/31/2026 6:44:52 AM