Skip to content

v0.3.5

Choose a tag to compare

@jacob-bd jacob-bd released this 26 Jun 22:55

Fixed

  • Windows: Claude Desktop 3P config now writes to the correct path — relay-ai was writing the configLibrary to %APPDATA%\Claude-3p (Roaming) but Claude Desktop reads from %LOCALAPPDATA%\Claude-3p (Local). The config is now written to the correct location. Reported by Trojan28A (#11).

  • Windows: Claude Desktop and Codex App now launch correctly from MSIX installsStart-Process 'shell:AppsFolder\...' failed silently due to PowerShell backslash double-escaping via JSON.stringify. The launcher now uses cmd /c start with an argument array, which bypasses PowerShell string parsing entirely and correctly opens MSIX-packaged apps. (#11).

  • Windows: OpenCode CLI now discovered correctly when where.exe returns multiple resultswhere.exe opencode returns both a bare script and a .cmd wrapper. relay-ai was taking the first result (the bare script), which Node's spawn() cannot execute directly. relay-ai now prefers the .cmd entry. The same fix applies to the claude, codex, and gemini binary lookups. The OpenCode serve subprocess also now uses cmd.exe /c on Windows to avoid Node 22's DEP0190 deprecation warning. (#11).