This repository has no description
0

Configure Feed

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

Bump to 0.7.1

Nathan Herald (Apr 14, 2026, 2:29 PM +0200) 6534fa02 f0d1aca7

+12 -1
+11
CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## 0.7.1 4 + 5 + ### Fixes 6 + - `pty peek` now works on exited sessions by reading saved output from metadata 7 + - `pty peek --wait` handles exited sessions: checks saved output, shows last lines and exit code if pattern not found 8 + - `--wait` accepts multiple patterns (`--wait "passed" --wait "failed"`) — matches on any 9 + - Increase saved output from 20 to 200 lines (`lastLines` in exit metadata) 10 + - Exit metadata saved twice: immediately in `onExit` (for status display) and again in `close()` (for complete output after all PTY data has flushed) 11 + - Fix TUI race where session showed as "running" after exit (delay list refresh 200ms to let metadata flush) 12 + - Fix SKILL.md examples to use multiple `--wait` flags instead of regex syntax 13 + 3 14 ## 0.7.0 4 15 5 16 ### Supervisor
+1 -1
package.json
··· 1 1 { 2 2 "name": "@myobie/pty", 3 - "version": "0.7.0", 3 + "version": "0.7.1", 4 4 "description": "Persistent terminal sessions with detach/attach, plus a Playwright-style testing library for TUI apps", 5 5 "type": "module", 6 6 "license": "MIT",