This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

Update readme and changelog

Nathan Herald (Apr 14, 2026, 4:56 PM +0200) 6fe3ce22 3b966278

+14 -1
+13 -1
CHANGELOG.md
··· 1 1 # Changelog 2 2 3 - ## 0.7.1 3 + ## Unreleased 4 + 5 + ### Relay integration 6 + - Interactive TUI (`pty` with no args) discovers [pty-relay](https://github.com/myobie/pty-relay) on PATH and shows remote sessions alongside local ones, grouped by host 7 + - Remote sessions are fetched asynchronously — local sessions render immediately, remote groups appear when the relay responds 8 + - Enter on a remote session spawns `pty-relay connect` with pause/resume 9 + - Add `pty list --remote` to include remote hosts in the text and JSON output 10 + - Graceful degradation: if pty-relay is not installed, nothing changes 11 + 12 + ### TUI framework 13 + - Export `SelectableGroup<T>` interface from `@myobie/pty/tui` 14 + - `groupedSelectable` `renderHeader` callback now receives the full group object instead of `(title, count)` 15 + - Empty groups are now rendered (header shown) instead of being silently skipped 4 16 5 17 ### launchd 6 18 - `pty supervisor launchd install` now compiles a small C wrapper binary (`pty-supervisor`) that validates Full Disk Access before exec'ing node — grant FDA to this binary, not to node itself
+1
README.md
··· 59 59 pty list # show active sessions 60 60 pty list --tags # show sessions with tags (#key=value) 61 61 pty list --json # show as JSON 62 + pty list --remote # include remote sessions via pty-relay 62 63 63 64 pty attach myserver # reconnect to a session 64 65 pty attach -r myserver # reconnect, auto-restart if exited