You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Codex Desktop 26.602+ creates pipes as 'codex-browser-use\<uuid>'
instead of 'codex-browser-use-<uuid>'. PowerShell Get-ChildItem treats
backslash as a directory separator and silently skips these pipes,
causing 'no pipes found' or 'all pipes failed' errors.
- Switch to [System.IO.Directory]::GetFileSystemEntries + substring
extraction to discover both old and new format pipes
- extractUUID handles both '-' and '\' separators
- Raise spurious warning threshold from >1 to >2 pipes (coexistence
is normal during Codex upgrades)
Smoke tested: get_info, create_tab, navigate, screenshot, close_tab
all pass against Codex Desktop 26.602.3474.0.
Co-Authored-By: Claude <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,14 @@
2
2
3
3
All notable changes to this project will be documented in this file.
4
4
5
+
## [1.5.0] - 2026-06-05
6
+
7
+
### Fixed
8
+
9
+
-**Pipe discovery broken after Codex Desktop 26.602+**: Newer Codex versions create pipe names with backslash separators (`codex-browser-use\<uuid>`) which PowerShell's `Get-ChildItem` treats as directories and skips. Switched to `[System.IO.Directory]::GetFileSystemEntries` and manual prefix stripping to discover both formats.
10
+
-**`extractUUID` updated** to strip both `-` and `\` separators after the `codex-browser-use` prefix.
11
+
-**Pipe warning threshold** raised from >1 to >2, since old-format and new-format pipes legitimately coexist during Codex upgrades.
Codex Desktop 26.602+ changed pipe naming from `codex-browser-use-<uuid>` to `codex-browser-use\<uuid>`. The old PowerShell `Get-ChildItem` discovery treated `\` as a directory separator and missed new-format pipes entirely.
0 commit comments