chore: add changeset for cross-platform ao open fix

Patch entry for d04fad33 / 32345ba8. Linked group already minor-bumping
via the Windows-support changeset, so this just contributes a distinct
CHANGELOG line.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Priyanshu Choudhary 2026-05-05 02:42:10 +05:30
parent 32345ba856
commit 3557e5568e
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
---
"@aoagents/ao-cli": patch
---
fix(cli): make `ao open` work cross-platform
`ao open` was effectively macOS-only: it sourced sessions from
`tmux list-sessions` (empty without tmux) and shelled out to the
`open-iterm-tab` helper. Sessions running under `runtime-process`
(the default on Windows) didn't show up at all.
Now uses `sm.list()` as the source of truth so every runtime is covered,
and branches the open action per platform — `open-iterm-tab` stays the
macOS path, with native handling on Windows and Linux.