This release fixes issues for SREs watching stability and regressions.
✓ No known CVEs patched in this version
Topics
+14 more
Summary
AI summaryFixed statusline rendering on Windows, restoring the promo row and correct intelligence percentage.
Changes in this release
| Type | Severity | Summary | CVE |
|---|---|---|---|
| Bugfix | Medium |
Fixes statusline rendering on Windows, showing full rows and correct intelligence percentage. Fixes statusline rendering on Windows, showing full rows and correct intelligence percentage. Source: llm_adapter@2026-07-14 Confidence: low |
— |
Full changelog
Fix
Fixes a real bug reported by a Windows user: the statusline was only showing 2 lines (missing the
promo/insight row) with the intelligence percentage stuck at 0%.
Root cause: the statusline's CLI delegation command appended 2>/dev/null to every candidate
command. Node's execSync already captures/discards stderr via stdio: ['pipe','pipe','pipe']
regardless of shell, so the redirect was redundant on POSIX — and actively broken on Windows, where
cmd.exe (execSync's default shell) doesn't understand /dev/null. Every delegation attempt failed
silently, so every render fell back to a hardcoded 0% intelligence value, and since the promo memo
cache is only ever seeded by a successful delegation, the promo row could never populate either.
Pre-existing since the #2337 delegation-caching fix (2026-06-10) — not introduced in 3.26.0, just
surfaced by a real user on that release. Fixed by removing the redundant redirect; added a regression
test pinning it can't come back.
Known follow-up (not fixed here): getGitInfo() still uses a POSIX-only sh -c script to read
the git username/branch shown in the header — will show generic "user" with no branch on native
Windows. Separate, smaller-impact issue, left out of this hotfix to keep it minimal and reviewable.
Packages published
@claude-flow/[email protected], [email protected], [email protected] — latest/alpha/v3alpha dist-tags
all aligned.
Weekly OSS security release digest.
The CVE patches and breaking changes that affected production tools this week. One email, every Sunday.
No spam, unsubscribe anytime.
Share this release
Related context
Related tools
Beta — feedback welcome: [email protected]