Skip to content

v0.1.1

Choose a tag to compare

@DilanDoshi DilanDoshi released this 11 Sep 01:58
· 158 commits to main since this release
96e0220

Wake v0.1.1 — a patch release. Three fixes on top of v0.1.0 in the fleet / room / DM surfaces. No new flags and nothing to opt into: it installs and runs exactly like v0.1.0.

Fixes

  • A fleet-wide auth 401 surfaces in ~1s instead of hanging ~5 min, and a dead login auto-parks (#68). When the upstream Claude Code OAuth-refresh race (anthropics/claude-code#48786) leaves a session retrying a dead token, Wake now decodes the api_retry 401 from the first attempt — routing it to the same auth-failure notice the give-up frame takes — and auto-parks a session after three 401s so it stops retrying blind. A single 401, or a non-401 overload, still just surfaces, since those often recover. This ends the hang; the token is still dead, so recover with a fresh login and /reauth.

  • An agent's room turns now appear in a DM opened after they happened (#69). A DM that was never opened didn't live-append the agent's group-chat turns, and the on-disk backfill is deliberately dropped whenever an event races the read (the common case for an active agent) — so those turns were lost until a clean reopen. A freshly-opened DM now seeds itself from the room's own in-memory turns for that agent; the authoritative disk read still supersedes and clears the seed on a clean fold, so nothing draws twice.

  • The streaming preview grows to fill an empty pane (#70). The plain-text tail shown while an agent writes was hard-capped at 3 rows, so a long single-block answer scrolled inside a 3-row window while the rest of the pane sat blank. That cap is now a floor: over a full transcript it stays at 3 (nothing you've read is pushed off screen), and over an empty or short one it grows into the unused rows. The flat per-token cost and the pane-height (alt-screen) invariant are preserved — the preview yields to 0 rows in a pane too tight to hold both it and the transcript floor.

Install

go install github.com/DilanDoshi/wake/cmd/wake@latest

Or download a prebuilt binary below (macOS and Linux, amd64 and arm64), verify it against checksums.txt, and put wake on your PATH.

Full changelog: v0.1.0...v0.1.1