Skip to content

Detached update hand-off on every OS: quit → hermes update → reopen, with one dumb shim window - #83634

Merged
OutThisLife merged 11 commits into
mainfrom
bb/handoff-window
Aug 12, 2026
Merged

OutThisLife merged 11 commits into
mainfrom
bb/handoff-window

Conversation

@OutThisLife

@OutThisLife OutThisLife commented Aug 11, 2026

Copy link
Copy Markdown
Contributor

Updating a desktop app should be: quit, run hermes update in the background, reopen. This PR makes that literally the architecture — on every OS.

The design

Three parts, strictly separated by what they're allowed to know:

1. The orchestrator owns the truthscripts/desktop-update/windows.ps1 (existing, evolved) and scripts/desktop-update/posix.sh (new). The Desktop spawns it detached and quits; the script waits the app out, runs plain hermes update (retry-once across the update boundary, truthful desktop-rebuild completion), swaps/relaunches the app, writes .hermes-update-result.json, and cleans up the marker. Both scripts live in the repo checkout, so every update refreshes the code that drives the next update. Nothing orchestration-shaped is frozen anywhere anymore.

2. The shim owns nothingscripts/desktop-update/ui.html, one page for both OSes, rendered in a chromeless browser app window (Edge on Windows, any chromium-family browser on mac/linux; loopback-only server because file:// pages can't receive events from a detached process). It polls /progress for exactly two events — done, error — and reacts: checkmark + "Opening Hermes…", or "Failed to update / Run hermes debug share". It streams nothing, decides nothing, and closes/relaunches nothing. If no renderer exists, no UI is shown and the update is identical — the ladder degrades Edge → WinForms card → log-only on Windows, browser → log-only on posix.

3. The Desktop only leavesapplyUpdates spawns the orchestrator and quits. The relaunched Desktop reads the result file on boot and surfaces failures (existing handoff-result.ts contract, unchanged).

The UI is #75895's hand-off screen ported verbatim (Fourier Flow loader, one title, one line, OS light/dark with the settled charcoal dark seeds) with #83634's terse failure state.

Why this is different from the current architecture

Today there are three updater codepaths, one per situation, each with its own bug tail:

Today This PR
Windows ps1 hand-off (window = 720×420 WinForms dashboard w/ streaming log) same hand-off, shim window
macOS in-app: applyUpdatesPosixInApp in main.ts drives update+rebuild while the app runs, then swaps its own bundle and re-execs quit → posix.sh → relaunch
Linux in-app + a 3-outcome relaunch matrix (relaunch / guiSkew / manual-sandbox) quit → posix.sh (same outcomes, decided post-update by the script)

Killing the in-app path deletes its structural hazards, not just its lines:

  • The bug: desktop auto-update kills its own backend via _kill_stale_dashboard_processes #37532 reaper-exclusion dance is gone. hermes update reaps stale backends; the in-app path had to thread HERMES_DESKTOP_CHILD_PID (every desktop-managed backend PID) into the update env so the reap would spare the app's own live backends. With the app dead before the update starts, there is nothing to spare. That whole class — boot→kill→crash loops when the exclusion list was wrong — can't exist.
  • No app swaps its own bundle while running. The swap runs after the process exits, from outside it.
  • main.ts sheds ~500 lines of updater machinery (runStreamedUpdate, rebuild retry, the relaunch-outcome matrix + update-relaunch.ts/update-rebuild.ts and their tests, shellQuote, resolveHermesCliBinary) from a 12.7k-line file the root AGENTS.md already flags for extraction.
  • One shape everywhere. A Windows update bug and a mac update bug are now the same investigation: read the same hand-off log, same result file, same marker protocol. The only OS-specific part left is the one that's genuinely OS-specific (the Windows venv-lock gauntlet; posix has no locks and its orchestrator is ~200 lines because of it).

Ordering note: the failure card and result file point at hermes debug share, which uploads the full hand-off log — so the window never needs to show error detail, which is what lets it stay this small.

Why this is different from the web-shell spike

The spike (rich web progress UI) and this PR share plumbing — its TcpListener loopback server, the msedge --app spawn with a throwaway profile, the degradation ladder, and -SelfTestUi are salvaged here directly (co-authored on the shim commit). The difference is the philosophy of the window:

  • The spike's page is a dashboard: phase checklist with checkmarks, animated progress sweep, live log tail. Those are the three elements Updater UX: quiet minimal update surfaces + permanent dry-run simulation #75895 removed from the other update surfaces, argued and settled: the percents were hardcoded milestones (lies), the log pane duplicated the status line, and updating is a wait, not a dashboard. This PR's page is the settled shape.
  • The spike feeds the UI from inside the orchestration (phase transitions pushed at each gate, Write-HandoffLog streaming into the page). That couples the window to the update's internals — every new stage is a UI change. Here the contract is two terminal events; the orchestrator can be rewritten freely and the shim never changes. A shim with a two-event contract is done — freezing it anywhere (old checkouts, cached copies) is harmless, which is the property that killed the last updater architecture.
  • The spike is Windows-only polish on one rung. This PR is the same window on every OS, plus the mac/linux architecture inversion.

Compatibility

  • No signed-binary dependency. Everything ships through the repo via hermes update — no installer rebuild, no re-signing, no user re-downloads. The staged Tauri binary remains exactly what it is today: last-resort fallback for checkouts predating the scripts.
  • Skew both directions: old asar + new checkout → compat forwarder at the legacy scripts/desktop-update.ps1 path; new asar + old checkout → resolver falls back to the flat path (tested).
  • Checkouts predating posix.sh get the manual hermes update card once; their next update pulls the script.
  • Marker protocol, fail-closed gates, result-file contract: byte-identical semantics to main.

Repro / QA

Sandboxed repro paths (disposable HERMES_HOME under /tmp, real code paths — the literal install.sh, the real orchestrator):

npm run update:shim          # shim dry run → done state
npm run update:shim:fail     # shim dry run → error state
npm run update:repro:fresh   # fresh install via scripts/install.sh
npm run update:repro:behind  # install rewound N commits (default 25), orchestrator drives it forward
npm run update:repro:error   # broken venv → abort + result file + error card

Validated here (mac): shim renders live in Chrome app-mode and settles both states; server E2E (routes, event flip, 404, teardown); orchestrator error path writes the result file, exit 3, cleans its marker; updater-process suite 14/14 including both skew directions; full desktop electron suite 970 passed / 2 skipped; both ps1 files parse clean (pwsh AST). Windows leg needs a box for visual QA: powershell -File scripts\desktop-update\windows.ps1 -SelfTestUi.

Supersedes the web-shell spike's window (plumbing salvaged, credited); built on #83634.

@github-actions

github-actions Bot commented Aug 11, 2026

Copy link
Copy Markdown
Contributor

૮ >ﻌ< ა ci review

ran on 4280413 — fix(update): exempt manual results from the hand-off freshne

⚠️ Warnings

OSV vulnerability scan · View job

2 known vulnerabilities found in pinned dependencies.

How to fix:

Review the findings in the Security tab. Update the affected dependencies if a patched version is available.


debug info

CI timings

CI timings · View report · View job

Wall time 7m6s vs 6m32s (+8.7%). 16 job(s) slower, 18 faster, 2 unchanged.

  • JS & TS checks / apps/desktop / check:test:ui: +38.0s
  • Python tests / Run tests slice 6/12: +28.0s
  • Python tests / Run tests slice 2/12: -25.0s
  • JS & TS checks / apps/desktop / check:test:desktop:all: +18.0s
  • Python tests / Run tests slice 8/12: +16.0s

@alt-glitch alt-glitch added type/feature New feature or request P3 Low — cosmetic, nice to have comp/desktop Electron desktop app (apps/desktop/*) platform/windows Native Windows-specific behavior or breakage area/install-update Installer, updater, packaging, wheels, doctor sweeper:risk-platform-windows Sweeper risk: may break or behave differently on native Windows labels Aug 11, 2026
@OutThisLife
OutThisLife requested a review from a team August 11, 2026 03:39
@OutThisLife OutThisLife changed the title Quiet minimal Windows update hand-off window Detached update hand-off on every OS: quit → hermes update → reopen, with one dumb shim window Aug 11, 2026
@helix4u

helix4u commented Aug 11, 2026

Copy link
Copy Markdown
Collaborator

I like the core direction here. Moving update orchestration into repo-owned scripts solves the frozen-updater problem, and the separation between the orchestrator, the two-event UI shim, and the Desktop process is clean. The Windows forwarder, fail-closed exit/venv gates, marker ownership, and asynchronous stdout/stderr draining also look like solid improvements.

I do not think the new POSIX handoff is ready to merge yet, though. I found several blocking lifecycle issues:

  1. Linux can close Hermes, report success, and never reopen it.

applyUpdatesPosixHandoff() quits before the script determines whether the running Linux application can actually be replaced or relaunched. In scripts/desktop-update/posix.sh, finish() writes the result and publishes done before calling relaunch().

For AppImage/deb/rpm installs, the later relaunch() branch only changes FINAL_MSG and starts nothing. The durable result has already been written as ok: true with Update complete., and readAndConsumeHandoffResult() only logs successful result messages rather than displaying them. The shim therefore says Opening Hermes..., closes, and leaves the user with no application and no visible explanation.

The sandbox-blocked Linux branch has the same problem. The old in-app implementation made the relaunch / guiSkew / manual decision while the working window was still alive. That safety property needs to be preserved, or the handoff protocol needs a surfaced warning/manual terminal state that is decided before done is published.

  1. The Linux relaunch gate no longer preserves the old safety contract.

The new */release/*-unpacked/* match is not anchored to $INSTALL_ROOT/apps/desktop/release/linux-unpacked, so it does not prove that this update rebuilt the selected executable.

The sandbox check also differs materially from the deleted sandboxPreflight() logic:

  • it checks the setuid bit but not root ownership;
  • it rejects a missing chrome-sandbox, although the previous code allowed builds using the namespace sandbox;
  • it checks HERMES_DESKTOP_NO_SANDBOX, which does not appear to be an established launch setting;
  • it no longer recognizes the supported ELECTRON_DISABLE_SANDBOX=1 or --no-sandbox cases.

Finally, setsid "$RELAUNCH_TARGET" drops the original launch arguments and working directory. The deleted implementation deliberately preserved filtered launch args, the relevant environment, and process.cwd(). A valid --no-sandbox launch, deep link, or project-scoped launch can therefore fail or return in a different context after updating.

Please retain or port the exact path resolution, sandbox preflight, argument filtering, environment preservation, and cwd restoration as tested pure logic rather than replacing them with the shell wildcard and -u check.

  1. macOS reports success before proving that the bundle swap and relaunch worked.

finish() writes ok: true, removes the update marker, and publishes done before relaunch() runs ditto, the bundle moves, and /usr/bin/open.

The swap sequence also does not check the second move:

mv "$RELAUNCH_TARGET" "$RELAUNCH_TARGET.old" || rm -rf "$RELAUNCH_TARGET"
mv "$RELAUNCH_TARGET.new" "$RELAUNCH_TARGET"

If that second move fails, the installed app can be missing while the result still says the update completed. An open failure is likewise only logged.

The swap should be transactional with a checked rollback, and swap/relaunch outcome must be reflected in the durable result before the marker is removed and done is published.

  1. POSIX status and result JSON are not escaped.

Both publish() and finish() interpolate strings directly into JSON. A quote or newline in a message or branch name produces malformed JSON. Git permits a branch name containing ", so this can happen through a valid branch. Please use a real JSON serializer and keep the write atomic.

The current test evidence does not cover these paths. This PR deletes the focused update-relaunch and update-rebuild tests, resolvePosixScriptHandoff() is not covered by updater-process.test.ts, and the repro script never passes --relaunch-target, so it does not exercise Linux relaunch/gui-skew/sandbox behavior or the macOS swap. Desktop E2E was also skipped, and the PR notes that Windows visual QA is still pending.

My recommendation would be to split the Windows shim/PowerShell refinements from the POSIX architecture change so the sound Windows work can proceed independently. If this stays as one PR, I would hold it until the Linux terminal-state and relaunch contracts, macOS transactional swap, JSON serialization, and focused regression coverage are addressed.

@teknium1

Copy link
Copy Markdown
Collaborator

Reviewed in depth — the architecture here is right, and it's the logical conclusion of the same argument that produced desktop-update.ps1 in the first place: nothing orchestration-shaped should be frozen anywhere. Taking the posix side out of main.ts and into a repo-owned script kills real hazard classes (the #37532 reaper-exclusion dance, the app swapping its own bundle while running), not just lines. The compat forwarder with both skew directions tested is exactly the right touch, and the two-event shim contract is a genuinely durable design: a frozen shim is harmless, which is the property the last updater architecture died for lacking.

Credit where due: the loopback-server/Edge-app plumbing salvage from #83637 is cleanly done and the co-author attribution is appreciated.

Three things before this can land:

  1. The window design isn't settled yet. The PR body cites Updater UX: quiet minimal update surfaces + permanent dry-run simulation #75895 for "argued and settled: no phases, no log pane" — but Updater UX: quiet minimal update surfaces + permanent dry-run simulation #75895 is still open. Whether the update window is the quiet minimal shim or a richer progress surface (feat(desktop): rich web progress UI for the Windows update hand-off #83637, also green) is a product call that belongs to @teknium1, and both PRs are now in front of him. Neither should merge until he picks; they rewrite the same surface.

  2. Blast radius on the posix inversion. Deleting the battle-tested in-app mac/linux updater in the same PR that introduces its replacement is a lot at once. The mac validation (970 electron tests, shim E2E, repro scripts) is solid groundwork — but the mac bundle-swap block (dittomv/rm -rf on the running .app) and the Linux chrome-sandbox gating are the parts I'd want exercised via npm run update:repro:behind on a real mac (and ideally one Linux box) with logs attached before the old path is deleted rather than deprecated. If splitting is on the table: Windows orchestrator + window now, posix inversion as its own PR after that QA, would land the low-risk half immediately.

  3. Windows visual QA gap is shared. Neither this PR's windows.ps1 -SelfTestUi nor feat(desktop): rich web progress UI for the Windows update hand-off #83637's has been run on a real Windows box yet. Whichever window wins needs that one run before it rides a production update.

Substantively: posix.sh reads correct on review — fail-closed desktop-exit gate preserved, marker claim/adopt/cleanup-if-owned semantics byte-compatible, #37541 sandbox honesty on the Linux relaunch, result-file contract intact. Nice work.

@alt-glitch alt-glitch added the sweeper:risk-compatibility Sweeper risk: may break existing users, config, migrations, defaults, or upgrades label Aug 11, 2026
@OutThisLife

Copy link
Copy Markdown
Contributor Author

@helix4u — all four were correct, thank you for the depth. Fixed in 324f7cb:

  • Ordering: finish() now delivers the outcome before publishing it — mac swap and the linux relaunch gate run first, then the result file, marker removal, and the shim event, with the app launch itself last so it can't race the result write. A gated linux install (AppImage/deb/rpm, broken sandbox helper) surfaces its message in the result file AND holds the shim window open with it instead of closing on a false "Opening Hermes…".
  • Gate: now an exact port of the deleted update-relaunch.ts decision — anchored path-segment match on <root>/apps/desktop/release/linux-unpacked, chrome-sandbox absent = namespace build = fine, present = root-owned + setuid required, with the real opt-outs (ELECTRON_DISABLE_SANDBOX, --no-sandbox among the replayed launch args, or the Desktop vouching via --sandbox-fallback). HERMES_DESKTOP_NO_SANDBOX is gone. collectRelaunchArgs/sandboxFallbackFromEnv live in updater-process.ts again, and the Desktop passes the filtered launch args (after --) plus --relaunch-cwd, so a deep-link or --no-sandbox launch survives the update.
  • mac swap: transactional with a checked rollback — a failed install restores the previous bundle and the result says so; even a failed rollback has an honest terminal state (exit 7, pointing at the rebuilt bundle). A failed open rewrites the result truthfully.
  • JSON: escaped + atomic (tmp + rename), regression-tested with a hostile branch name.

Coverage: resolvePosixScriptHandoff + the ported helpers in updater-process.test.ts (19 pass), and npm run update:repro:gate asserts the whole gate matrix plus the hostile-branch JSON round-trip. Full desktop suite 4701 passed / 2 skipped.

@OutThisLife

Copy link
Copy Markdown
Contributor Author

@teknium1 — thanks. On 2, I'd push back on the split: the risky part of this PR isn't the posix deletion, it's the window of time where two updater architectures coexist. The in-app path isn't so much battle-tested as battle-scarred — it's the code that produced #37532, #37541, and #45205, and its hazards are structural (live backends during the update, an app swapping its own bundle, the reaper exclusion list). Landing the Windows half alone means the next posix incident gets debugged against code already deleted on a branch somewhere, and the compat matrix (old asar × new checkout × 3 OSes × 2 architectures) doubles for a release cycle.

The residual risk the split was hedging is what helix4u's review flagged, and that's now closed (see above): the relaunch gate is a byte-faithful port of the deleted update-relaunch.ts decision with its own asserted matrix (npm run update:repro:gate), the mac swap is transactional with checked rollback, and outcome-before-publication ordering is enforced in one place.

On 3: windows.ps1 -SelfTestUi has now run on a real Windows 11 box through real Edge — both terminal states render correctly (loader + "Updating Hermes" → checkmark, and the ✕ / "Failed to update" / hermes debug share card, light theme).

@OutThisLife

Copy link
Copy Markdown
Contributor Author

Test methodology + confidence

Full evidence trail for what was actually exercised, on what, and what remains open.

What was run, where

1. Windows 11, real hardware (WSL2 host, PowerShell 5.1, real Edge)

  • Shim visual QA (windows.ps1 -SelfTestUi): both terminal states rendered through a real chromeless Edge app window — loader + "Updating Hermes" → checkmark, and ✕ / "Failed to update" / hermes debug share. Light theme verified against the OS. This closes the "no Windows box has run it" gap for this PR's window.
  • Sandboxed skew E2E — the actual "old GUI, N commits behind" path: disposable HERMES_HOME under C:\Users\Public, real install.ps1 install, checkout rewound 100 commits (predating this PR's layout: flat=True nested=False), then the old flat scripts\desktop-update.ps1 — the exact file an old asar resolves and spawns — drove hermes update forward onto this branch. Result: {"ok":true,"exit_code":0,"message":"Update complete."}, checkout landed on the PR head, scripts/desktop-update/windows.ps1 materialized, the flat path became the 11-line forwarder, and no marker was left behind. That is the one-time migration every existing Windows user rides when this merges, executed end-to-end on real Windows against the real venv-lock machinery.

2. Linux (this branch)

  • npm run update:repro:gate — full relaunch-gate decision matrix asserted: AppImage/not-under-unpacked → skew; sibling-prefix dir (linux-unpacked-evil) not fooled; missing chrome-sandbox = namespace build → relaunch; present-but-not-root/setuid → manual; each opt-out (--sandbox-fallback, --no-sandbox replayed arg, ELECTRON_DISABLE_SANDBOX=1) → relaunch. Plus a hostile-branch (evil"branch\n$(x)) round-trip through the result JSON, parsed back with a real JSON parser.
  • Shim server E2E: /progress serving the done-with-message state, HTML fallback line, 404 route.
  • updater-process.test.ts: 19/19 — including resolvePosixScriptHandoff (present / predates-script / Windows-null), both Windows resolver skew directions, and the ported collectRelaunchArgs / sandboxFallbackFromEnv.
  • Full desktop electron suite: 4701 passed / 2 skipped, typecheck clean.

3. macOS — covered by the PR-body validation (shim live in Chrome app-mode both states, server E2E, orchestrator error path, 970-test suite) plus review-driven hardening now unit- and matrix-tested. The transactional swap's failure legs (ditto failure → keep old; mv-in failure → rollback; rollback failure → exit 7 honest terminal state) are code-path-reviewed and shell-syntax-verified but not fault-injected on real hardware.

Confidence, stated plainly

Population Path Confidence
Existing Windows users (incl. months-stale frozen hermes-setup.exe) old flat ps1 → update → forwarder handoff High — the literal migration ran E2E on real Windows, plus both resolver skew directions unit-tested
New users (install after merge) nested orchestrator from day one High — same code the E2E ran post-migration; no legacy state to collide with
mac/linux users, happy path quit → posix.sh → update → swap/relaunch High — repro scripts + suite + the ordering fix means the result file can no longer lie
linux edge population (AppImage/deb/rpm, broken sandbox helper, --no-sandbox launches) gate → skew/manual terminal states High on the decision (matrix-asserted), medium on real-desktop ergonomics — the honest message now reaches the window and result file, but no real AppImage box has run it
mac swap failure legs rollback chain Medium — reviewed + syntax-checked, not fault-injected on hardware
Future users repo-owned scripts refresh with every update Structural — this is the point of the architecture: there is no longer any frozen orchestration to age; a bug shipped here is fixable by the very next hermes update

No claim of certainty beyond that. The two medium cells are exactly where a real mac + one AppImage box before (or immediately after) merge would convert review confidence into executed confidence — happy to run those if someone lends the hardware, and npm run update:repro:behind / update:repro:gate make each run a one-liner.

@helix4u

helix4u commented Aug 11, 2026

Copy link
Copy Markdown
Collaborator

Thanks, I re-reviewed 324f7cb and the added test-methodology notes. The fixes are substantive:

  • The Linux relaunch gate now preserves the old safety contract: anchored unpacked path, root/setuid sandbox validation, missing-helper behavior, established sandbox opt-outs, filtered launch args, and cwd restoration.
  • The macOS bundle replacement is now transactional, with checked rollback and an honest hard-failure state if rollback also fails.
  • The practical JSON corruption case is fixed with escaping plus atomic replacement.
  • The gate matrix, hostile-branch round-trip, real Windows shim QA, and old-flat-script to nested-orchestrator migration E2E close most of the original coverage gaps.

I do not think the terminal lifecycle is fully closed yet, though.

  1. posix.sh::finish() still writes the result, removes the marker, publishes done, and closes the success shim before calling launch_app(). On macOS, an open failure only rewrites the result after the visible success state has disappeared. On Linux, setsid ... & reports that the background shell started, not that the target executable successfully launched, so an immediate exec failure can retain the success result. Please make launch acceptance part of the terminal outcome before publishing done; if launch is rejected, rewrite the result and retain a visible manual/error state before cleaning up the marker.

  2. Linux skew and manual outcomes still rely on the optional Chromium-family shim for their only visible instruction. On an AppImage/deb/rpm or sandbox-blocked install without Chrome/Chromium/Edge/Brave, Hermes quits, the gate deliberately does not relaunch it, no shim appears, and successful result messages are only logged on the next manual boot. A failed update from a packaged launch has the same problem because the skew gate prevents the Desktop from reopening to surface the failure dialog. This path needs a recovery surface that does not depend on a separately installed browser, or the decision needs to happen before the working Desktop exits.

  3. The Windows orchestrator has the same sibling truth gap: its finally block writes the result, removes the marker, and closes the progress UI before Start-DesktopRelaunch(). WMI and fallback launch failures are only logged, leaving the result as ok: true. Since this PR defines one cross-platform handoff contract, the Windows launcher should also return an outcome and preserve a visible/manual state if both launch mechanisms fail.

The current tests validate the gate decisions and normal Windows migration well, but they do not exercise launch failure, Linux skew/manual without a renderer, or the final terminal-event ordering. Focused regressions for those paths would close the remaining review concerns.

@alt-glitch alt-glitch added the needs-decision Awaiting maintainer decision before any implementation label Aug 11, 2026
@OutThisLife

Copy link
Copy Markdown
Contributor Author

@helix4u — round 2 addressed in db835fd (plus daf83a4, a bug the mac E2E caught in the meantime — see the confidence comment below).

1. Launch acceptance is now part of the terminal outcome, ordered before the event. finish() runs: deliver outcome → durable result + marker → launch with acceptance → terminal event. macOS acceptance is open's exit code (launchd fails loudly on a broken bundle); Linux verifies the setsid child is still alive 1.5s after spawn, so an instant exec failure (ENOENT/ELF/sandbox death) downgrades to a held manual state with a rewritten result instead of a vanished "done". The shim gains manual as a third terminal state — title "Update complete", message says what to do, window stays up. Still zero logic in the page.

2. Renderer-free recovery surface. When a manual/error outcome fires with no shim (no chromium-family browser), the posix orchestrator now raises notify-sendzenitykdialog, best-effort, Linux-only (mac's open reopens the app even on the error path, and the browser list there is effectively always satisfiable). A gated skew/manual on a browserless AppImage box is no longer a silent disappearance — it's a desktop notification plus the truthful result on next boot. On "decide before the Desktop exits" as the alternative: the skew/manual decision inputs (is the rebuilt binary the running one, is the fresh chrome-sandbox launchable) only exist after the rebuild, so the decision can't move pre-quit without deciding on stale artifacts; the notification path covers the gap without giving the window authority back.

3. Windows sibling contract closed. Start-DesktopRelaunch now returns verified acceptance — WMI pid must still be alive (dying before its window appears counts as failure, not "nothing to focus"), and the Start-Process fallback checks the process is alive after 1.5s. On a failed launch the finally block rewrites the result and holds Show-ManualFinale (shim manual event, or the WinForms card with the same copy). The error path still relaunches after showing itself, same as before.

Regressions: npm run update:repro:launch drives the real orchestrator against stub installs: instant-exit relaunch → manual downgrade in the result JSON; gated skew → skew message in the result (never a bare "Update complete."). Gate matrix unchanged and still green; updater-process suite 19/19.

@OutThisLife

Copy link
Copy Markdown
Contributor Author

macOS E2E + confidence

Ran the posix leg end-to-end on this mac (arm64, Sequoia) against sandboxed installs — disposable HERMES_HOME under /tmp, real install.sh, real orchestrator, real hermes update.

What the E2E caught (and why it existed)

The sandboxed behind-repro caught the worst bug this PR could have shipped: posix.sh inherited the Desktop's cwd, and parts of the update pipeline resolve the tree they mutate from the working directory — the run updated my development checkout (the cwd at spawn time) while reporting success against the sandbox. Result file said ok:true, sandbox SHA never moved, and an unrelated repo got fast-forwarded. Fixed in daf83a4 (cd "$INSTALL_ROOT" before the update — the exact cwd: updateRoot contract the deleted in-app path had); rerun confirmed the outside checkout stays untouched (reflog clean before/after).

That this fell out of npm run update:repro:behind on the first real run is the argument for keeping these repro paths in the tree.

Runs

Leg Result
update:shim / update:shim:fail (Chrome app-mode, live window) ✅ loader → ✓/✕, error window held, server torn down cleanly
shim server E2E (routes, event flip, 404, teardown, hostile-JSON status)
update:repro:error (broken venv) ✅ abort exit 3, truthful result file, marker cleaned (owned-only)
update:repro:behind (rewound sandbox, full orchestrator: marker → hermes update → result → relaunch decision) ✅ flow; ⚠️ see caveat
update:repro:gate (linux gate matrix, 8 cases) ✅ 8/8
update:repro:launch (launch-acceptance matrix)
updater-process.test.ts (both skew directions, ported helpers) ✅ 19/19
full desktop electron suite ✅ 970 passed / 2 skipped
both ps1 files, pwsh AST parse

Confidence, per path

  • mac shim + event channel: high. Watched live repeatedly, both terminal states, teardown clean.
  • mac orchestrator flow (marker → update → result → relaunch decision): high for the flow itself — every leg exercised for real, including the abort and downgrade paths.
  • mac bundle swap + relaunch acceptance: medium. The transactional swap and open acceptance are exercised only through the launch matrix's negative case here; the positive swap needs a packaged .app run (the sandbox install doesn't build the desktop bundle). This is the leg I'd watch on the first dogfood update.
  • behind-repro caveat: the sandbox's git tree doesn't advance — its origin is a local clone, so hermes update's pull path self-limits (reports up-to-date against a non-official remote). The orchestrator legs all run for real; the git-pull leg is effectively a no-op in the sandbox. Pointing the sandbox at the official remote would close this, at the cost of the repro testing origin/main instead of your branch. Open to either.
  • linux gate/launch/notify paths: medium-high — gate and launch matrices are real-orchestrator runs, but on darwin the linux-only branches (setsid acceptance, notify-send ladder) execute only in the matrix's simulated shapes. Needs one run on a real linux box.
  • Windows: not tested here — Brooklyn's PC has that leg; windows.ps1 -SelfTestUi + the migration E2E cover it.

@helix4u

helix4u commented Aug 11, 2026

Copy link
Copy Markdown
Collaborator

@OutThisLife
Thanks, this round substantively closes the earlier Windows and POSIX findings. The Windows relaunch acceptance/manual finale now matches the intended contract, the Linux gate preserves the old safety behavior, the macOS replacement is transactional, and the additional launch/result regressions are useful.

I still see four correctness issues before approval:

  1. A missing macOS relaunch target is treated as accepted.

    In posix.sh::launch_app(), [ -d "$RELAUNCH_TARGET" ] || return 0 treats a nonempty but nonexistent relaunch target as success.

    Once a relaunch target has been supplied, its disappearance is a rejected launch, not "no launch due." The Darwin launch repro currently codifies this false-success behavior by expecting ok:true for a missing bundle. This should return nonzero and assert the manual downgrade/result instead.

  2. Renderer-free recovery is still not guaranteed.

    On macOS, find_browser() only recognizes Chrome, Edge, Chromium, and Brave. A Safari-only machine has no shim. Recoverable swap failures set DONE_NOTE, and that branch publishes manual without calling launch_app(), so Hermes can remain closed with no visible instruction. A native macOS fallback such as osascript, or another guaranteed recovery surface, is still needed.

    On Linux, notify-send, zenity, and kdialog are all optional. The current elif chain also selects notify-send based on its existence, then suppresses execution failure with || true. If it exists but cannot reach D-Bus or the desktop session, the code never tries zenity or kdialog. The ladder should fall through when a candidate fails, and the no-browser/no-notifier outcome still needs an explicit recovery contract.

  3. The install-root correction must fail closed.

    posix.sh uses set -u, not set -e, so cd "$INSTALL_ROOT" can fail and then continue running hermes update from the previous directory. That recreates the wrong-tree mutation class the change is intended to eliminate.

    Please check the cd, write an honest terminal result, and exit before invoking Hermes if the install root cannot be entered.

  4. update:repro:fresh is not reliably noninteractive.

    install.sh supports --non-interactive. Redirecting stdin from /dev/null is not equivalent because prompt_yes_no() falls back to /dev/tty when one is available. The repro can therefore prompt or hang when optional system dependencies are missing. Please pass --non-interactive explicitly.

The macOS testing meaningfully raises confidence in the orchestrator, marker, result, shim, and abort paths. Its stated boundaries remain important:

  • The sandbox origin made the behind-update pull effectively a no-op.
  • The positive packaged .app replacement and relaunch path was not exercised.
  • The Linux setsid and notification paths were simulated on Darwin rather than run on Linux.
  • The cwd repro proved that the script was dangerously caller-cwd-sensitive, but the production Electron spawn uses cwd: HERMES_HOME; the development-checkout mutation was observed through the repro caller, not reproduced from the exact production Desktop spawn.

I would still want one packaged macOS dogfood update and one real Linux run before deleting the old POSIX updater path in the same merge.

teknium1
teknium1 previously approved these changes Aug 11, 2026
@OutThisLife

Copy link
Copy Markdown
Contributor Author

@helix4u — all four fixed in fa03494.

  1. Missing mac target = rejected launch. launch_app() returns nonzero for a supplied-but-missing target; the launch matrix now asserts the manual downgrade ('Reopen Hermes' in message) instead of codifying the false success. Related: a mac swap-failure DONE_NOTE now still relaunches the kept/rolled-back bundle before publishing manual — the user gets their old app back and the instruction to re-run.

  2. Recovery surface guaranteed. The ladder now falls through on execution failure, not just absence — a notify-send that can't reach D-Bus no longer eats the message; zenity/kdialog get their turn. macOS gets osascript display notification (present on every macOS, covers the Safari-only machine). The end of the ladder is an explicit contract, not silence: the no-surface case logs that the result file is the delivery channel, and the relaunched/next-boot Desktop surfaces it — which is the same contract the old in-app path ended at when its window was gone.

  3. cd fails closed. Checked; on failure: honest result (exit 3, "Nothing was changed"), no hermes update. You're right that set -u alone made the correction itself a member of the wrong-tree class it was killing.

  4. --non-interactive passed explicitly — I'd grepped the flag list too narrowly and missed the /dev/tty fallback in prompt_yes_no(). </dev/null dropped.

On the CI red: slice 5's test_multiplex_busy_input_mode failure was the stale merge-ref (branch base predated a31be48's gateway busy-mode fixes; the test passes on merged main locally). Merged main into the branch — the rerun should be green.

Agreed on the merge gate: one packaged mac dogfood update + one real linux run before this merges. The positive .app swap leg is queued as exactly that dogfood run.

@OutThisLife

Copy link
Copy Markdown
Contributor Author

CI note: the red on slice 5 (test_multiplex_busy_input_mode) is #83743 — main has been red since c8f235a106 (bisect evidence on the issue). Not introduced by this branch; every other check is green.

@helix4u

helix4u commented Aug 11, 2026

Copy link
Copy Markdown
Collaborator

@OutThisLife
Thanks, I re-reviewed fa03494f7e. Three of the four findings are now closed correctly:

  • A supplied-but-missing macOS relaunch target is rejected, and the repro now asserts the manual downgrade.
  • Failure to enter INSTALL_ROOT aborts before hermes update.
  • The fresh-install repro now passes --non-interactive explicitly.

The renderer-free recovery finding is still only partially closed.

On Linux, the final no-surface outcome is still a log line. For a gated skew or manual result, Hermes deliberately does not relaunch, so a machine with no shim browser and no working notifier can still close with no visible instruction.

The notifier ladder also does not fully verify execution. notify-send now falls through when it fails, which is good, but zenity and kdialog are backgrounded. Their shell command reports successful submission immediately, even if the process then exits because no display or desktop session is available.

More importantly, the claimed next-boot delivery channel does not currently surface manual-success messages. main.ts displays a dialog only when result.ok is false. An ok:true result with a skew, sandbox, or reopen instruction is only logged and then consumed. The comment that the relaunched or next-boot Desktop surfaces that message therefore does not match the current consumer.

I think the result protocol needs to distinguish ordinary success from manual action required, and the Desktop must visibly surface the latter when it consumes the result. That would at least make the durable fallback real. If immediate browserless Linux disappearance is accepted as an unavoidable limitation, the code and PR should describe it as best-effort recovery rather than guaranteed recovery. Otherwise, it still needs a recovery surface that does not depend on optional desktop utilities.

One smaller macOS edge remains in the same area: the DONE_NOTE branch calls launch_app || true, so failure to reopen the kept or rolled-back bundle is ignored and not reflected in the durable message.

The packaged macOS update and real Linux run are also still outstanding. I would wait to approve this until the packaged macOS and real Linux runs are complete and the manual-result delivery issue is fixed.

@OutThisLife

Copy link
Copy Markdown
Contributor Author

@helix4u — round 4 in 015f595.

The durable channel is now real, and it's the contract. You were right that "next boot surfaces it" didn't match the consumer — main.ts only dialogged ok:false. The result protocol now carries manual: an ok result the user still must act on. Both orchestrators set it on every DONE_NOTE/downgrade path (skew, sandbox-manual, rejected launch), and the Desktop surfaces manual results in a real dialog when it consumes them. So the browserless-Linux gated case now ends at a visible dialog, worst case one boot later — not a log line. Older result files without the field parse as manual:false (covered in handoff-result.test.ts).

Notifier ladder verifies execution. zenity/kdialog must survive their first second — an instant death (no display/session) falls through instead of reporting submission. The end of the ladder is now explicitly documented as best-effort immediate delivery whose guaranteed channel is the result dialog above; the code and comments no longer claim more than that. On the residual case you named — no browser, no working notifier, gated skew, user watching the machine right now — immediate visibility is accepted as best-effort; the guarantee is durable-and-visible, one boot deferred. That's now what the code says it is.

mac DONE_NOTE + failed reopen: || true dropped — the durable message now carries both facts ("update ok, previous version kept, and Hermes could not reopen itself").

Matrices assert manual in the result JSON; updater-process + handoff-result suites 25/25, typecheck clean, gate/launch matrices green, ps1 AST clean.

On the merge gate: agreed and unchanged — packaged mac dogfood + one real Linux run before this merges. Those two runs are queued; this PR shouldn't land on green CI alone.

@alt-glitch alt-glitch removed the needs-decision Awaiting maintainer decision before any implementation label Aug 11, 2026
…repro

The posix orchestrator inherited the Desktop's cwd, and parts of the
update pipeline resolve the tree they mutate from the working directory
-- the sandboxed behind-repro caught it updating the DEVELOPER'S primary
checkout (cwd at spawn time) while reporting success against the
sandbox. cd "$INSTALL_ROOT" before running hermes update, matching the
cwd:updateRoot contract of the deleted in-app path. Verified: rerun
leaves the outside checkout untouched (reflog clean).

repro.sh fresh used a --no-interactive flag install.sh doesn't have;
non-TTY stdin (</dev/null) + --skip-setup is the real non-interactive
contract.
…hestrators

gille's round-2 review: the terminal lifecycle claimed outcomes the
launch hadn't delivered yet.

- posix finish() reorders: outcome -> durable result+marker -> LAUNCH
  WITH ACCEPTANCE -> terminal event. mac acceptance is open's exit code
  (launchd rejects broken bundles loudly); linux verifies the setsid
  child is still alive 1.5s after spawn, so an instant exec failure
  downgrades to a held 'manual' state + truthful result instead of a
  vanished 'done'. Gated skew/manual outcomes publish a real 'manual'
  event (new third shim state -- still zero logic in the page).
- Renderer-free linux recovery: when no chromium-family browser exists,
  manual/error outcomes fire notify-send/zenity/kdialog best-effort so a
  gated non-relaunch is never a silent disappearance.
- windows.ps1 mirrors the contract: Start-DesktopRelaunch returns
  verified acceptance (WMI pid alive / fallback process alive; dying
  before the window appears counts as failure), and the finally block
  downgrades to Show-ManualFinale + rewritten result when the launch
  didn't land. Error path still relaunches after showing itself.
- repro.sh launch / npm run update:repro:launch: real-orchestrator
  matrix for instant-exit relaunch downgrade and skew-message surfacing.
- posix.sh cds into the install root before hermes update (found by the
  sandboxed behind-repro: parts of the update resolve the mutated tree
  from cwd, which is the Desktop's cwd -- it updated the DEVELOPER'S
  checkout while reporting success against the sandbox).
…covery surface

gille's round 3:

- cd into the install root FAILS CLOSED (set -u without set -e let a
  failed cd continue hermes update in the caller's tree -- the exact
  wrong-tree class the correction exists to kill). Honest result, exit 3.
- A supplied mac relaunch target that is missing is a REJECTED launch ->
  manual downgrade; the launch matrix asserts the downgrade instead of
  codifying the old false success. A mac swap-failure DONE_NOTE now still
  relaunches the kept/rolled-back bundle before publishing manual.
- notify_fallback: every rung falls through on EXECUTION failure (a
  notify-send that can't reach D-Bus no longer eats the message), mac
  gets osascript (present on every macOS -- Safari-only machines have no
  chromium shim), and the no-surface terminal case is an explicit logged
  contract: the result file carries the outcome to the next boot.
- update:repro:fresh passes --non-interactive explicitly (prompt_yes_no
  falls back to /dev/tty, so </dev/null was not equivalent).
Round 4 of helix4u's review — the durable fallback is now real:

- Result protocol gains `manual`: an ok result the user still must act
  on (reopen the app, reinstall the GUI package, fix the sandbox helper).
  Both orchestrators set it on every DONE_NOTE/downgrade path; the Desktop
  consumer surfaces manual results in a real dialog on next boot instead
  of a log line — the browserless-Linux disappearance now ends at a
  visible dialog, worst case one boot later. Older result files without
  the field parse as manual:false (covered).
- notify ladder verifies EXECUTION, not existence: zenity/kdialog must
  survive their first second (an instant death means no display and falls
  through); the no-surface case is an explicit best-effort contract whose
  guaranteed channel is the result dialog.
- mac DONE_NOTE + failed relaunch of the kept/rolled-back bundle is no
  longer swallowed (`|| true` dropped): the durable message carries both
  facts.
- launch/gate matrices assert `manual` in the result JSON; consumer
  round-trip tested in handoff-result.test.ts.
@helix4u

helix4u commented Aug 11, 2026

Copy link
Copy Markdown
Collaborator

The manual-result protocol now matches the intended contract. One retention edge remains: readAndConsumeHandoffResult() still applies the 30-minute freshness limit to manual:true results.

If browserless Linux has no working notifier and the user reopens Hermes more than 30 minutes later, Desktop deletes the manual result as stale and never shows the action-required dialog.

Please preserve manual:true results until they are consumed, or give them a separate retention policy. A regression should verify that an old ordinary result is discarded while an old manual result is still returned once.

A manual:true hand-off result is the durable action-required channel: on a
browserless Linux box with no working notifier, the boot dialog is the first
and only place the message ever surfaces. The 30-minute freshness gate
discarded it if the user reopened Hermes later, stranding exactly the machine
the channel exists to serve. Parse before the age check and skip the window
for manual results; the file is still unlinked before any age check, so it's
surfaced at most once. Ordinary results still expire.

Regression: a stale ordinary result is discarded (and consumed) while a stale
manual result is still returned once.
@OutThisLife

Copy link
Copy Markdown
Contributor Author

@helix4u — fixed in 4280413. manual:true results are now exempt from the freshness window: they're the durable action-required channel, and the browserless-Linux boot dialog is the first and only place the message ever surfaces, so a >30-min reopen must not drop it. readAndConsumeHandoffResult() now parses before the age check and only applies maxAgeMs to non-manual results. The unconditional unlinkSync still runs before any age check, so a manual result is surfaced at most once — no resurfacing on a later boot. Ordinary results still expire as before.

Regression added (handoff-result.test.ts): a stale ordinary result is discarded (and consumed), while a stale manual result is still returned once and null on the second read.

@OutThisLife
OutThisLife enabled auto-merge August 11, 2026 22:17
@helix4u

helix4u commented Aug 11, 2026

Copy link
Copy Markdown
Collaborator

@OutThisLife
Thanks, I re-reviewed 4280413db against current main. The stale-manual-result fix is correct: ordinary results still expire, while manual:true results survive until they are consumed once. The previous correctness findings are addressed.

I found one remaining integration issue in the durable-result path.

readAndConsumeHandoffResult() is only called inside waitForUpdateToFinish(), which is passed to runPrimaryBackendStartup() as waitForLocalStart. An already-saved remote connection returns before that callback runs. The existing startup test explicitly asserts that waitForLocalStart is never called for a saved remote.

As a result, a Desktop boot using a saved remote backend never consumes or displays a local handoff failure or manual:true result. The manual result no longer expires, which prevents permanent loss, but it can remain hidden indefinitely. This is narrower than the normal remote update flow, since that flow targets the remote backend, but it still breaks the stated contract that the next Desktop boot surfaces the durable result.

Please separate result consumption and surfacing from the local update-marker wait, then run the result consumer unconditionally during Desktop startup. The marker wait can remain local-only. A regression should cover an already-saved remote connection with a pending manual or failed handoff result.

Non-blocking: the PR body should be refreshed before merge. It still describes a two-event shim and unchanged result contract, says POSIX falls back to log-only, and says Windows visual QA is pending. Those statements no longer match the current implementation or later test evidence.

@OutThisLife
OutThisLife merged commit ed0e707 into main Aug 12, 2026
55 checks passed
@OutThisLife
OutThisLife deleted the bb/handoff-window branch August 12, 2026 01:32
skappafrost pushed a commit to skappafrost/hermes-agent that referenced this pull request Aug 15, 2026
…ndow

Detached update hand-off on every OS: quit → hermes update → reopen, with one dumb shim window
gabrielcosi pushed a commit to gabrielcosi/home-ops that referenced this pull request Sep 1, 2026
…8.27 ➔ v2026.8.31) (#606)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [ghcr.io/gabrielcosi/hermes-agent](https://github.com/NousResearch/hermes-agent) | patch | `v2026.8.27` → `v2026.8.31` |

---

### Release Notes

<details>
<summary>NousResearch/hermes-agent (ghcr.io/gabrielcosi/hermes-agent)</summary>

### [`v2026.8.31`](https://github.com/NousResearch/hermes-agent/releases/tag/v2026.8.31): Hermes Agent v0.21.0 (v2026.8.31)

[Compare Source](https://github.com/NousResearch/hermes-agent/compare/v2026.8.27...v2026.8.31)

##### Hermes Agent v0.21.0 (v2026.8.31)

**Release Date:** August 31, 2026
**Since v0.20.0:** \~5,800 commits · \~2,475 merged PRs · \~5,680 files changed · \~869,000 insertions · \~135,000 deletions · **\~2,100 issues closed** · 760+ contributors

> **The Pantheon Release.** v0.20.0 made Hermes the herald — he spoke, and he carried word to other agents. In v0.21.0 the gods assemble. Bot Mode ships built into the desktop app: a society of named agents with their own faces and group chats, where your bots talk to each other — and to you — like a team, not a toolbox. Around that spine: cron jobs gained memory and continuity so scheduled agents actually learn between runs, subagents can be steered live mid-flight, the MCP surface became a real command center, and the agent can now drive the desktop's own browser. This release rolls up everything from the v0.20.1–v0.20.6 infrastructure patch tags — those windows are fully documented here.

***

##### ✨ Highlights

- **Bot Mode — your agents become a society, built in** — Bot Mode is now a bundled, default-on part of the desktop app: every agent profile gets a name, a deterministic avatar face (with randomize/lock controls), and a place in a shared roster. Create Discord-style group chats where multiple bots and you talk in one room, @&#8203;-mention any bot from the composer, and give rooms names and pictures. Before, "multi-agent" meant plumbing; now it looks like a chat app full of coworkers. ([#&#8203;87886](https://github.com/NousResearch/hermes-agent/pull/87886), [#&#8203;88243](https://github.com/NousResearch/hermes-agent/pull/88243), [#&#8203;89386](https://github.com/NousResearch/hermes-agent/pull/89386), [#&#8203;96726](https://github.com/NousResearch/hermes-agent/pull/96726) — [@&#8203;teknium1](https://github.com/teknium1), [@&#8203;OutThisLife](https://github.com/OutThisLife), [@&#8203;dokterdok](https://github.com/dokterdok))

- **`hermes peer` — bot-to-bot DMs between your agents** — Any Hermes agent can now message any other by handle, across profiles and gateways, from the CLI or from inside a conversation. Ask your research bot to hand findings to your coding bot and get the reply back where you can read it. Replies land in each agent's canonical Bot Chat, so conversations between agents are durable and inspectable, not fire-and-forget. ([#&#8203;88725](https://github.com/NousResearch/hermes-agent/pull/88725), [#&#8203;88178](https://github.com/NousResearch/hermes-agent/pull/88178), [#&#8203;91487](https://github.com/NousResearch/hermes-agent/pull/91487) — [@&#8203;teknium1](https://github.com/teknium1))

- **Cron jobs that remember** — Scheduled jobs stopped being goldfish. Cron agents now load and update persistent memory like every other agent, `continuity=true` carries each run's output into the next (so a monitor can dedupe against what it already reported), every job gets a durable notepad scratchpad, monitor-mode jobs skip the LLM entirely when nothing changed, and cron output can land in a bot's canonical Bot Chat — where the bot actually responds. Your 9am briefing job now knows what it told you yesterday. ([#&#8203;91447](https://github.com/NousResearch/hermes-agent/pull/91447), [#&#8203;80774](https://github.com/NousResearch/hermes-agent/pull/80774), [#&#8203;81139](https://github.com/NousResearch/hermes-agent/pull/81139), [#&#8203;81138](https://github.com/NousResearch/hermes-agent/pull/81138), [#&#8203;91487](https://github.com/NousResearch/hermes-agent/pull/91487) — [@&#8203;teknium1](https://github.com/teknium1), [@&#8203;smwbev](https://github.com/smwbev))

- **Steer your subagents while they run** — `delegate_task` gained live orchestration: list running children, steer one mid-flight with a course correction, or stop it early and keep the partial result. Add optional JSON-schema validation on child outputs, per-delegation cost surfaced in results, and raised defaults (250 iterations, 10 concurrent children) — delegation went from fire-and-pray to actually managed parallel work. ([#&#8203;85232](https://github.com/NousResearch/hermes-agent/pull/85232), [#&#8203;81144](https://github.com/NousResearch/hermes-agent/pull/81144), [#&#8203;81142](https://github.com/NousResearch/hermes-agent/pull/81142), [#&#8203;86506](https://github.com/NousResearch/hermes-agent/pull/86506), [#&#8203;86745](https://github.com/NousResearch/hermes-agent/pull/86745) — [@&#8203;teknium1](https://github.com/teknium1))

- **The MCP command center** — MCP servers and the catalog merged into one coherent desktop page with drag-in "paste anything" import, background health checks that nudge you to re-auth before a tool call fails, a fleet cost/usage overlay showing schema token estimates and 30-day usage per server, and `hermes://` deep links that install an MCP server with explicit confirmation. Managing twenty MCP servers used to be config-file archaeology; now it's a dashboard. ([#&#8203;87525](https://github.com/NousResearch/hermes-agent/pull/87525), [#&#8203;87572](https://github.com/NousResearch/hermes-agent/pull/87572), [#&#8203;87576](https://github.com/NousResearch/hermes-agent/pull/87576), [#&#8203;87579](https://github.com/NousResearch/hermes-agent/pull/87579), [#&#8203;87581](https://github.com/NousResearch/hermes-agent/pull/87581) — [@&#8203;teknium1](https://github.com/teknium1))

- **A CLI power wave** — Ctrl+P opens a fuzzy command palette, the `/model` picker filters as you type, `/status` shows reasoning mode, pending approvals, and context usage, and the status bar can display live cache-hit %, latency, and tokens/sec with per-field toggles. Plus: a global emergency stop, session pin/unpin, rotating task-oriented composer placeholders — and Ghostty-level **terminal pets**, because a companion should have a companion. ([#&#8203;90730](https://github.com/NousResearch/hermes-agent/pull/90730), [#&#8203;90717](https://github.com/NousResearch/hermes-agent/pull/90717), [#&#8203;90745](https://github.com/NousResearch/hermes-agent/pull/90745), [#&#8203;98250](https://github.com/NousResearch/hermes-agent/pull/98250), [#&#8203;98282](https://github.com/NousResearch/hermes-agent/pull/98282), [#&#8203;97666](https://github.com/NousResearch/hermes-agent/pull/97666) — [@&#8203;teknium1](https://github.com/teknium1), and salvaged community work)

- **The agent drives the desktop's browser** — The in-app browser stopped being a window the agent could only look at: Hermes now navigates, clicks, and reads it directly, and pages can be popped out to your system browser with full link context menus. Ask it to walk a docs site or debug a web app and watch it happen inside your own app. ([#&#8203;90197](https://github.com/NousResearch/hermes-agent/pull/90197), [#&#8203;89366](https://github.com/NousResearch/hermes-agent/pull/89366) — [@&#8203;OutThisLife](https://github.com/OutThisLife), [@&#8203;ethernet8023](https://github.com/ethernet8023))

- **Six new providers and a model catalog wave** — Meta Model API (Muse Spark) arrives as a built-in provider, alongside CommandCode, Tencent TokenPlan, Nebius Token Factory, Ramp Router, and Actual Computer. The catalogs picked up GLM-5.3-Flash, qwen3.8-max/flash, Gemini 3.7 Flash, MiniMax M3 free, and Nemotron 3.5 Lightning — and `model_overrides` lets you patch any model's context window or pricing yourself without waiting on a release. ([#&#8203;88565](https://github.com/NousResearch/hermes-agent/pull/88565), [#&#8203;88308](https://github.com/NousResearch/hermes-agent/pull/88308), [#&#8203;97917](https://github.com/NousResearch/hermes-agent/pull/97917), [#&#8203;97916](https://github.com/NousResearch/hermes-agent/pull/97916), [#&#8203;97915](https://github.com/NousResearch/hermes-agent/pull/97915), [#&#8203;85560](https://github.com/NousResearch/hermes-agent/pull/85560) — [@&#8203;teknium1](https://github.com/teknium1) and community)

- **Security hardening across the board** — Protected agent-instruction files (AGENTS.md, skills, memory stores) now always require write approval so a prompt-injected agent can't quietly rewrite its own standing orders. A deep redaction sweep closed secret-leak gaps across terminal errors, `.env` file reads, checkpoints, and ACP logs; the approval system learned Windows destructive commands; and macOS permission grants finally survive updates via a stable TCC signing identity. ([#&#8203;81152](https://github.com/NousResearch/hermes-agent/pull/81152), [#&#8203;80965](https://github.com/NousResearch/hermes-agent/pull/80965), [#&#8203;84428](https://github.com/NousResearch/hermes-agent/pull/84428), [#&#8203;95091](https://github.com/NousResearch/hermes-agent/pull/95091) — [@&#8203;teknium1](https://github.com/teknium1) and community)

***

##### 🏗️ Core Agent & Architecture

##### Providers & Models

- **New providers:** Actual Computer inference ([#&#8203;79644](https://github.com/NousResearch/hermes-agent/pull/79644), salvage of [#&#8203;26491](https://github.com/NousResearch/hermes-agent/issues/26491)), CommandCode with GOAT/Pro/Max plans ([#&#8203;88308](https://github.com/NousResearch/hermes-agent/pull/88308), salvage of [#&#8203;32909](https://github.com/NousResearch/hermes-agent/issues/32909)), Meta Model API (Muse Spark) as a built-in provider plugin ([#&#8203;88565](https://github.com/NousResearch/hermes-agent/pull/88565)), Tencent TokenPlan ([#&#8203;97917](https://github.com/NousResearch/hermes-agent/pull/97917)), Nebius Token Factory ([#&#8203;97916](https://github.com/NousResearch/hermes-agent/pull/97916)), and Ramp Router ([#&#8203;97915](https://github.com/NousResearch/hermes-agent/pull/97915)).
- **Model catalog wave:** qwen3.8-max and qwen3.8-flash ([#&#8203;78024](https://github.com/NousResearch/hermes-agent/pull/78024), [#&#8203;96979](https://github.com/NousResearch/hermes-agent/pull/96979)), Gemini 3.7 Flash ([#&#8203;85526](https://github.com/NousResearch/hermes-agent/pull/85526)), GLM-5.3-Flash across OpenRouter/Nous/z.ai/OpenCode ([#&#8203;95621](https://github.com/NousResearch/hermes-agent/pull/95621), [#&#8203;96293](https://github.com/NousResearch/hermes-agent/pull/96293)), MiniMax M3 + Inkling free SKUs ([#&#8203;96264](https://github.com/NousResearch/hermes-agent/pull/96264)), Nemotron 3.5 Lightning ([#&#8203;84645](https://github.com/NousResearch/hermes-agent/pull/84645)), Meta Muse Spark 1.2 ([#&#8203;88600](https://github.com/NousResearch/hermes-agent/pull/88600)).
- **Per-model metadata overrides** via `model_overrides` config — patch context windows, pricing, or capabilities for any model without waiting on a release ([#&#8203;85560](https://github.com/NousResearch/hermes-agent/pull/85560)).
- **Data-training-tier warnings** — a unified selection-guard registry warns you across every picker surface when a model trains on your data ([#&#8203;85917](https://github.com/NousResearch/hermes-agent/pull/85917)).
- **Pip-installed model providers** discovered via entry points — third parties can ship providers as packages ([#&#8203;85504](https://github.com/NousResearch/hermes-agent/pull/85504), salvage [#&#8203;81419](https://github.com/NousResearch/hermes-agent/issues/81419)).
- **Prompt caching engaged for LiteLLM Claude** on the OpenAI wire ([#&#8203;87517](https://github.com/NousResearch/hermes-agent/pull/87517) — [@&#8203;kshitijk4poor](https://github.com/kshitijk4poor)) and api.meta.ai routed through the Responses API for caching ([#&#8203;88601](https://github.com/NousResearch/hermes-agent/pull/88601)).
- **Codex GPT context defaults** back to the verified 272K, with explicit -900k picker variants for the large window ([#&#8203;92797](https://github.com/NousResearch/hermes-agent/pull/92797)).

##### Agent Loop & Reliability

- **Stalled-provider recovery** — a stalled stream no longer leaves Desktop silent or burns the retry budget ([#&#8203;87236](https://github.com/NousResearch/hermes-agent/pull/87236) — [@&#8203;fangliquanflq](https://github.com/fangliquanflq)).
- **MoA hardening cluster** — the Mixture-of-Agents facade now survives client rebuilds, stream retries, provider rotation, and fallback/restore without leaking prepared requests to native clients ([#&#8203;90212](https://github.com/NousResearch/hermes-agent/pull/90212) and siblings).
- **Structured-output resilience** — auxiliary calls translate `response_format` for Anthropic wires and retry when a provider rejects structured output ([#&#8203;89589](https://github.com/NousResearch/hermes-agent/pull/89589) — [@&#8203;ethernet8023](https://github.com/ethernet8023)).
- **Compression: lean tail mode** + a compaction recall eval harness to measure what compression actually preserves ([#&#8203;87326](https://github.com/NousResearch/hermes-agent/pull/87326)).
- **Oversized tool results spill to cache** instead of being truncated in sandbox-less sessions ([#&#8203;89028](https://github.com/NousResearch/hermes-agent/pull/89028)).
- **`clarify` asks multiple independent questions in one call** — one form instead of a chain of round-trips ([#&#8203;89467](https://github.com/NousResearch/hermes-agent/pull/89467) — [@&#8203;ethernet8023](https://github.com/ethernet8023)).
- **Verify subsystem** (port from superagent-ai/grok-cli): run-recipe detection + environment manifest so "it works" claims are backed by detected build/test commands ([#&#8203;80686](https://github.com/NousResearch/hermes-agent/pull/80686)).

##### Sessions & State

- **Resumed transcripts never re-append** — `_db_persisted` stamped at row load time ([#&#8203;92539](https://github.com/NousResearch/hermes-agent/pull/92539) — [@&#8203;kshitijk4poor](https://github.com/kshitijk4poor)).
- **SessionDB context-manager protocol** for leak-free DB lifecycles ([#&#8203;88048](https://github.com/NousResearch/hermes-agent/pull/88048) — [@&#8203;jackulau](https://github.com/jackulau)).
- **Instant session naming** from the opening message, with sticky titles across resume ([#&#8203;81985](https://github.com/NousResearch/hermes-agent/pull/81985) — [@&#8203;OutThisLife](https://github.com/OutThisLife)).
- **Session pin/unpin from the CLI** — durable keep flags ([#&#8203;80761](https://github.com/NousResearch/hermes-agent/pull/80761)).

##### 📱 Messaging Platforms (Gateway)

- **Slack native live cards** — real streaming replies via chat.startStream plus opt-in plan/task cards for tool progress ([#&#8203;85476](https://github.com/NousResearch/hermes-agent/pull/85476)); outbound link-preview suppression across native and relay planes ([#&#8203;95142](https://github.com/NousResearch/hermes-agent/pull/95142) — [@&#8203;benbarclay](https://github.com/benbarclay)).
- **Telegram inline picker** — every command and skill searchable via [@&#8203;botname](https://github.com/botname), bypassing Telegram's command-menu cap ([#&#8203;98317](https://github.com/NousResearch/hermes-agent/pull/98317)).
- **Relay matured** — native static/dynamic plugin initialization ([#&#8203;77915](https://github.com/NousResearch/hermes-agent/pull/77915) — [@&#8203;bbednarski9](https://github.com/bbednarski9)), live-card ops with draft streaming + task cards ([#&#8203;85796](https://github.com/NousResearch/hermes-agent/pull/85796) — [@&#8203;victor-kyriazakos](https://github.com/victor-kyriazakos)), session-span segmentation ([#&#8203;85467](https://github.com/NousResearch/hermes-agent/pull/85467)), voice-note STT restored over the relay lane ([#&#8203;95274](https://github.com/NousResearch/hermes-agent/pull/95274) — [@&#8203;benbarclay](https://github.com/benbarclay)), transport dedupe/fail-fast fixes ([#&#8203;89584](https://github.com/NousResearch/hermes-agent/pull/89584)).
- **Gateway control socket** — fleet consumers query the gateway itself (identify/status), and updaters pause gateways gracefully instead of tree-killing them ([#&#8203;92447](https://github.com/NousResearch/hermes-agent/pull/92447), [#&#8203;95695](https://github.com/NousResearch/hermes-agent/pull/95695)).
- **Selective multiplex profile serving** ([#&#8203;83400](https://github.com/NousResearch/hermes-agent/pull/83400)), per-profile MCP lifecycle RPCs ([#&#8203;86473](https://github.com/NousResearch/hermes-agent/pull/86473)), roster previews showing the latest message ([#&#8203;85905](https://github.com/NousResearch/hermes-agent/pull/85905)), concise background-process notifications by default ([#&#8203;85877](https://github.com/NousResearch/hermes-agent/pull/85877)).
- **Turn-reaper stack dumps** — when the watchdog fires, wedged worker stacks are captured for diagnosis ([#&#8203;86248](https://github.com/NousResearch/hermes-agent/pull/86248)), with loop-watchdog tuning knobs wired end-to-end ([#&#8203;92317](https://github.com/NousResearch/hermes-agent/pull/92317)).
- **Split-delivery bug class closed** — swallowed finals and split deliveries fixed as a class ([#&#8203;79669](https://github.com/NousResearch/hermes-agent/pull/79669) — [@&#8203;kshitijk4poor](https://github.com/kshitijk4poor), salvages [#&#8203;78558](https://github.com/NousResearch/hermes-agent/issues/78558)).

##### 🖥️ Desktop App

- **Bot Mode built in** — see Highlights. Full sub-catalog: attributed agent-to-agent message cards ([#&#8203;85855](https://github.com/NousResearch/hermes-agent/pull/85855)), sender-side delivery notices ([#&#8203;85888](https://github.com/NousResearch/hermes-agent/pull/85888)), paint-first hydration for instant wakes ([#&#8203;89510](https://github.com/NousResearch/hermes-agent/pull/89510)), editable group names and room pictures ([#&#8203;89371](https://github.com/NousResearch/hermes-agent/pull/89371)), Routines pane ([#&#8203;88731](https://github.com/NousResearch/hermes-agent/pull/88731)), rebuilt on the app design system ([#&#8203;96726](https://github.com/NousResearch/hermes-agent/pull/96726) — [@&#8203;OutThisLife](https://github.com/OutThisLife)).
- **In-app browser the agent can drive** — the agent uses the desktop's browser tab, not just looks at it ([#&#8203;90197](https://github.com/NousResearch/hermes-agent/pull/90197) — [@&#8203;OutThisLife](https://github.com/OutThisLife)), with external-open + link context menus ([#&#8203;89366](https://github.com/NousResearch/hermes-agent/pull/89366)).
- **Detached update hand-off on every OS** — quit → update → reopen with a single shim window; Windows desktop updates no longer park on "Updating Hermes" ([#&#8203;83634](https://github.com/NousResearch/hermes-agent/pull/83634), [#&#8203;90937](https://github.com/NousResearch/hermes-agent/pull/90937), [#&#8203;95897](https://github.com/NousResearch/hermes-agent/pull/95897)).
- **Quality-of-life wave** — HUD snaps to cursor on ⌘⇧G ([#&#8203;83130](https://github.com/NousResearch/hermes-agent/pull/83130)), paste into the composer without focusing it ([#&#8203;84955](https://github.com/NousResearch/hermes-agent/pull/84955)), per-turn duration badges ([#&#8203;87245](https://github.com/NousResearch/hermes-agent/pull/87245)), readable macOS window translucency ([#&#8203;88744](https://github.com/NousResearch/hermes-agent/pull/88744)), Linux launcher entry ([#&#8203;76456](https://github.com/NousResearch/hermes-agent/pull/76456)), Linux keychain auto-detection ([#&#8203;84903](https://github.com/NousResearch/hermes-agent/pull/84903)), cron + blueprint recipes in the sidebar ([#&#8203;85162](https://github.com/NousResearch/hermes-agent/pull/85162)).
- **Send Diagnostics** — error cards can upload a redacted debug bundle with a support handoff ([#&#8203;92020](https://github.com/NousResearch/hermes-agent/pull/92020)).
- **Seq-stamped event replay** — lossless desktop reconnect over WebSocket ([#&#8203;94219](https://github.com/NousResearch/hermes-agent/pull/94219) — [@&#8203;kshitijk4poor](https://github.com/kshitijk4poor)).
- **God-file decomposition** — the desktop codebase refactored into atomic modules ([#&#8203;89611](https://github.com/NousResearch/hermes-agent/pull/89611) — [@&#8203;OutThisLife](https://github.com/OutThisLife)).

##### 🖥️ CLI & TUI

- See Highlights for the power wave (command palette, fuzzy /model, richer /status, live status-bar metrics, pets).
- **`hermes approval-check`** — dry-run approval verdicts for a command without running it ([#&#8203;81137](https://github.com/NousResearch/hermes-agent/pull/81137)).
- **Session titles in status bars** ([#&#8203;81947](https://github.com/NousResearch/hermes-agent/pull/81947)); subagent model exposed in the auxiliary-models picker ([#&#8203;80463](https://github.com/NousResearch/hermes-agent/pull/80463)).
- **Ctrl+C fixed** — stopped pushing the Kitty keyboard protocol that broke interrupts ([#&#8203;87074](https://github.com/NousResearch/hermes-agent/pull/87074)).

##### 🔧 Tool System & MCP

- **MCP command center** — see Highlights ([#&#8203;87525](https://github.com/NousResearch/hermes-agent/pull/87525) et al.).
- **Interrupted commands no longer poison cwd** — the terminal won't adopt a stale working directory after an interrupt ([#&#8203;85654](https://github.com/NousResearch/hermes-agent/pull/85654) — [@&#8203;ethernet8023](https://github.com/ethernet8023)).
- **Windows rename contention recovery** ([#&#8203;84852](https://github.com/NousResearch/hermes-agent/pull/84852) — [@&#8203;OutThisLife](https://github.com/OutThisLife)); colon-bearing session IDs no longer break sandbox mounts ([#&#8203;93488](https://github.com/NousResearch/hermes-agent/pull/93488), consolidated 6 PRs).
- **Vision output uncapped** — aux vision calls stop clamping max\_tokens ([#&#8203;75253](https://github.com/NousResearch/hermes-agent/pull/75253) — [@&#8203;adikpb](https://github.com/adikpb)).
- **Subagent work protected** — delegate no longer deletes a child's uncommitted work when git inspection fails ([#&#8203;88419](https://github.com/NousResearch/hermes-agent/pull/88419) — [@&#8203;kshitijk4poor](https://github.com/kshitijk4poor)).

##### 🧩 Skills Ecosystem

- **Productivity skill wave** (salvaged from [@&#8203;community](https://github.com/community) proposals): document-to-action-items, meeting-action-items, email-inbox-triage, github-issue-to-pr, weekly-review-planning, competitor-news-monitor, product-price-monitor, social-media-content-calendar ([#&#8203;81185](https://github.com/NousResearch/hermes-agent/pull/81185), [#&#8203;81749](https://github.com/NousResearch/hermes-agent/pull/81749), [#&#8203;81672](https://github.com/NousResearch/hermes-agent/pull/81672), [#&#8203;81708](https://github.com/NousResearch/hermes-agent/pull/81708), [#&#8203;81936](https://github.com/NousResearch/hermes-agent/pull/81936), [#&#8203;81945](https://github.com/NousResearch/hermes-agent/pull/81945), [#&#8203;81906](https://github.com/NousResearch/hermes-agent/pull/81906), [#&#8203;81942](https://github.com/NousResearch/hermes-agent/pull/81942)).
- **HAR-derived API clients** — watch a website once, then call its hidden API directly with no browser ([#&#8203;70823](https://github.com/NousResearch/hermes-agent/pull/70823)).
- **publish-site** — versioned website publishing to GitHub/Cloudflare/Netlify Pages ([#&#8203;72189](https://github.com/NousResearch/hermes-agent/pull/72189)); **session-librarian** for prompt-driven session management ([#&#8203;84917](https://github.com/NousResearch/hermes-agent/pull/84917)); **blocked-page-recovery** fallback ladder ([#&#8203;84906](https://github.com/NousResearch/hermes-agent/pull/84906)); **merge-reconciler** for neutral multi-agent conflict resolution ([#&#8203;83063](https://github.com/NousResearch/hermes-agent/pull/83063)); Box productivity skill ([#&#8203;85767](https://github.com/NousResearch/hermes-agent/pull/85767)); ast-grep codemods ([#&#8203;80892](https://github.com/NousResearch/hermes-agent/pull/80892)); draw-your-font + simple-english optional skills ([#&#8203;80814](https://github.com/NousResearch/hermes-agent/pull/80814), [#&#8203;80811](https://github.com/NousResearch/hermes-agent/pull/80811)); plan-interrogation (evolved grill-me) ([#&#8203;97831](https://github.com/NousResearch/hermes-agent/pull/97831)).
- **Advisory SKILL.md linter on create** ([#&#8203;81896](https://github.com/NousResearch/hermes-agent/pull/81896)); skills-hub live-repo fallback for missing optional skills ([#&#8203;82780](https://github.com/NousResearch/hermes-agent/pull/82780)).

##### ⏰ Cron, Delegation & Multi-Agent

- **Cron memory + continuity** — see Highlights ([#&#8203;91447](https://github.com/NousResearch/hermes-agent/pull/91447), [#&#8203;80774](https://github.com/NousResearch/hermes-agent/pull/80774)).
- **Monitor-mode jobs** with hash-suppressed change detection ([#&#8203;81138](https://github.com/NousResearch/hermes-agent/pull/81138)); per-job durable notepads ([#&#8203;81139](https://github.com/NousResearch/hermes-agent/pull/81139)); pre-dispatch config validation ([#&#8203;81140](https://github.com/NousResearch/hermes-agent/pull/81140)); acked failure signatures stop re-pinging ([#&#8203;95017](https://github.com/NousResearch/hermes-agent/pull/95017)); per-job reasoning-effort pinning ([#&#8203;91244](https://github.com/NousResearch/hermes-agent/pull/91244)); "Trigger now" executes immediately and safely ([#&#8203;70638](https://github.com/NousResearch/hermes-agent/pull/70638) — [@&#8203;smwbev](https://github.com/smwbev)); model-drift impact surfaced in Desktop ([#&#8203;83266](https://github.com/NousResearch/hermes-agent/pull/83266) — [@&#8203;ctaylor86](https://github.com/ctaylor86)).
- **Live subagent orchestration** — see Highlights ([#&#8203;85232](https://github.com/NousResearch/hermes-agent/pull/85232)); structured-output schemas on delegate\_task ([#&#8203;81144](https://github.com/NousResearch/hermes-agent/pull/81144)); batch-quality validation before spawning ([#&#8203;81141](https://github.com/NousResearch/hermes-agent/pull/81141)); truncation markers on capped children ([#&#8203;86641](https://github.com/NousResearch/hermes-agent/pull/86641)).
- **Kanban hardening** — collision-hotspot flagging ([#&#8203;83428](https://github.com/NousResearch/hermes-agent/pull/83428)), split-brain decision-ownership contract ([#&#8203;83424](https://github.com/NousResearch/hermes-agent/pull/83424)), memory-aware dispatch guard ([#&#8203;88115](https://github.com/NousResearch/hermes-agent/pull/88115)), notify/wake delivery modes ([#&#8203;85487](https://github.com/NousResearch/hermes-agent/pull/85487)).

##### 📊 Observability

- **Model/provider usage reporting** and bounded tool-metrics aggregation land as an observability subsystem ([#&#8203;68881](https://github.com/NousResearch/hermes-agent/pull/68881), [#&#8203;68882](https://github.com/NousResearch/hermes-agent/pull/68882) — [@&#8203;afourniernv](https://github.com/afourniernv)), with lifecycle ops bounded so a wedged pipeline can never block the agent ([#&#8203;83514](https://github.com/NousResearch/hermes-agent/pull/83514) — [@&#8203;victor-kyriazakos](https://github.com/victor-kyriazakos)).

##### 🔒 Security & Reliability

- **Protected instruction files** — writes to AGENTS.md/skills/memory always require approval ([#&#8203;81152](https://github.com/NousResearch/hermes-agent/pull/81152)).
- **Redaction sweep** — emission gaps closed across env-name variants, control-splits, process(list), checkpoints ([#&#8203;80965](https://github.com/NousResearch/hermes-agent/pull/80965)); `.env` reads redacted via file-read detection ([#&#8203;80964](https://github.com/NousResearch/hermes-agent/pull/80964)); terminal exception results + ACP stderr ([#&#8203;81675](https://github.com/NousResearch/hermes-agent/pull/81675), [#&#8203;81686](https://github.com/NousResearch/hermes-agent/pull/81686)); SSH target logging ([#&#8203;88232](https://github.com/NousResearch/hermes-agent/pull/88232)).
- **Windows approval coverage** — destructive Windows commands and paths now trip the approval system ([#&#8203;84428](https://github.com/NousResearch/hermes-agent/pull/84428)).
- **Supply-chain response** — the Blender MCP catalog entry and skill were removed after an upstream compromise ([#&#8203;83404](https://github.com/NousResearch/hermes-agent/pull/83404)); plugin installs get Tier-1 security scanning ([#&#8203;80728](https://github.com/NousResearch/hermes-agent/pull/80728)).
- **macOS TCC identity** — permission grants survive every update via `hermes desktop --setup-tcc-identity` ([#&#8203;95091](https://github.com/NousResearch/hermes-agent/pull/95091)).
- **PKCE cookie fix** — SameSite=None over HTTPS with a matching clear path ([#&#8203;83536](https://github.com/NousResearch/hermes-agent/pull/83536) — [@&#8203;benbarclay](https://github.com/benbarclay)).

##### 🏗️ Infrastructure, CI & Packaging

- **Real-OS CI** — macOS and Windows CI lanes with tests gated by real host OS ([#&#8203;77992](https://github.com/NousResearch/hermes-agent/pull/77992) — [@&#8203;ethernet8023](https://github.com/ethernet8023)); work lanes on 32-core runners ([#&#8203;92009](https://github.com/NousResearch/hermes-agent/pull/92009)); review comments + image builds moved out of the hot CI path ([#&#8203;82668](https://github.com/NousResearch/hermes-agent/pull/82668)).
- **Bootstrap installer** no longer waits on pipe EOF ([#&#8203;90941](https://github.com/NousResearch/hermes-agent/pull/90941) — [@&#8203;OutThisLife](https://github.com/OutThisLife)).

##### 🐛 Notable Bug Fixes

- Desktop session races (Stop→edit/resend, submit ownership) fixed as a cluster ([#&#8203;86594](https://github.com/NousResearch/hermes-agent/pull/86594)); workspace-pane idle flicker ([#&#8203;97513](https://github.com/NousResearch/hermes-agent/pull/97513)); assistant-ui boundary recovery ([#&#8203;81232](https://github.com/NousResearch/hermes-agent/pull/81232)).
- Kanban schema re-creation when a cached DB path loses it ([#&#8203;83619](https://github.com/NousResearch/hermes-agent/pull/83619) — [@&#8203;JoaoMarcos44](https://github.com/JoaoMarcos44)).
- Cron jobs no longer inherit a kanban worker's dispatcher identity ([#&#8203;79657](https://github.com/NousResearch/hermes-agent/pull/79657) — [@&#8203;kshitijk4poor](https://github.com/kshitijk4poor)); relay-fronted Slack cron delivery ([#&#8203;85340](https://github.com/NousResearch/hermes-agent/pull/85340) — [@&#8203;victor-kyriazakos](https://github.com/victor-kyriazakos)).
- Model-picker serves cached custom-provider catalogs on no-probe opens ([#&#8203;81973](https://github.com/NousResearch/hermes-agent/pull/81973) — [@&#8203;austinpickett](https://github.com/austinpickett)).
- Docker sandbox MEDIA attachments no longer silently drop ([#&#8203;94509](https://github.com/NousResearch/hermes-agent/pull/94509)); desktop binary attachments delivered into sandbox backends ([#&#8203;81717](https://github.com/NousResearch/hermes-agent/pull/81717)).
- Session-hygiene compaction cooldown escalates on repeat failures ([#&#8203;79741](https://github.com/NousResearch/hermes-agent/pull/79741) — [@&#8203;kshitijk4poor](https://github.com/kshitijk4poor)).
- Provider-injected parameter 400s retried instead of aborting the turn ([#&#8203;91643](https://github.com/NousResearch/hermes-agent/pull/91643)).
- …and roughly two thousand more closed issues' worth — this window averaged \~85 merged PRs per day.

##### ↩️ Reverted in this window (not shipping)

- **Model Council mode (/council)** — landed then reverted; not in this release.
- **DCP context engine** — landed then reverted; not in this release.
- **WS-only gateway server ([#&#8203;94245](https://github.com/NousResearch/hermes-agent/issues/94245))** — merged then reverted ([#&#8203;96118](https://github.com/NousResearch/hermes-agent/issues/96118)); FastAPI remains on the desktop boot path. The seq-stamped event replay ([#&#8203;94219](https://github.com/NousResearch/hermes-agent/issues/94219)) DID ship.
- Electron rolled back to 40.10.2; TCC interpreter anchor removed (superseded by the signing-identity approach that shipped).

##### 👥 Contributors

##### Core Team (Nous Research)

- **[@&#8203;teknium1](https://github.com/teknium1)** — release direction, Bot Mode, MCP command center, cron memory, and \~1,340 merged PRs
- **[@&#8203;kshitijk4poor](https://github.com/kshitijk4poor)** (374 PRs) — gateway delivery classes, session persistence, event replay, MoA/caching fixes
- **[@&#8203;OutThisLife](https://github.com/OutThisLife)** (209 PRs) — desktop architecture, Bot Mode UI, in-app browser, update hand-off
- **[@&#8203;ethernet8023](https://github.com/ethernet8023)** (38 PRs) — OS-gated CI lanes, clarify multi-question, tool cwd safety, aux structured-output resilience
- **[@&#8203;benbarclay](https://github.com/benbarclay)** (17 PRs) — relay voice STT, Slack link previews, PKCE
- **[@&#8203;victor-kyriazakos](https://github.com/victor-kyriazakos)** (15 PRs) — relay live cards, observability bounding
- **[@&#8203;rob-maron](https://github.com/rob-maron)**, **[@&#8203;austinpickett](https://github.com/austinpickett)**, **[@&#8203;jquesnelle](https://github.com/jquesnelle)**, **[@&#8203;shannonsands](https://github.com/shannonsands)** — providers, dashboard, model catalogs, and more

##### Top Community Contributors (by merged PR count)

- **[@&#8203;helix4u](https://github.com/helix4u)** (31 PRs) — wake-word capture, session UX, fix wave across desktop and gateway
- **[@&#8203;fangliquanflq](https://github.com/fangliquanflq)** (17 PRs) — stalled-provider recovery and agent-loop resilience
- **[@&#8203;bbednarski9](https://github.com/bbednarski9)** — relay native plugin integration; **[@&#8203;HexLab98](https://github.com/HexLab98)**, **[@&#8203;xxxigm](https://github.com/xxxigm)**, **[@&#8203;afourniernv](https://github.com/afourniernv)** (observability), **[@&#8203;liuhao1024](https://github.com/liuhao1024)**, **[@&#8203;Christopher-Schulze](https://github.com/Christopher-Schulze)**, **[@&#8203;Adolanium](https://github.com/Adolanium)**, **[@&#8203;webtecnica](https://github.com/webtecnica)**, **[@&#8203;smwbev](https://github.com/smwbev)** (cron Trigger-now), **[@&#8203;ctaylor86](https://github.com/ctaylor86)** (cron drift in Desktop), **[@&#8203;JoaoMarcos44](https://github.com/JoaoMarcos44)** (kanban schema recovery), **[@&#8203;jackulau](https://github.com/jackulau)** (SessionDB context manager), **[@&#8203;adikpb](https://github.com/adikpb)** (vision output caps), **[@&#8203;dokterdok](https://github.com/dokterdok)** (Bot Mode unification), and many more.

##### All Contributors

Huge thanks to every one of the 760+ people who contributed code, co-authored fixes, or had their work salvaged into this release:

[@&#8203;03farren](https://github.com/03farren), [@&#8203;0xarkstar](https://github.com/0xarkstar), [@&#8203;0xGr1mm](https://github.com/0xGr1mm), [@&#8203;0xWhiteMage](https://github.com/0xWhiteMage), [@&#8203;100yenadmin](https://github.com/100yenadmin), [@&#8203;1052326311](https://github.com/1052326311), [@&#8203;29206394](https://github.com/29206394), [@&#8203;2ndNatureAI](https://github.com/2ndNatureAI), [@&#8203;3Nya3](https://github.com/3Nya3),
[@&#8203;3x3xX3N0N](https://github.com/3x3xX3N0N), [@&#8203;404Dealer](https://github.com/404Dealer), [@&#8203;4adwentures](https://github.com/4adwentures), [@&#8203;5Hyeons](https://github.com/5Hyeons), [@&#8203;686f6c61](https://github.com/686f6c61), [@&#8203;69k4xmdfm2-blip](https://github.com/69k4xmdfm2-blip), [@&#8203;6ylqq](https://github.com/6ylqq), [@&#8203;75day](https://github.com/75day), [@&#8203;a-espinoza](https://github.com/a-espinoza),
[@&#8203;A-Snegin](https://github.com/A-Snegin), [@&#8203;a-yeyang](https://github.com/a-yeyang), [@&#8203;a0000001](https://github.com/a0000001), [@&#8203;A2chitect](https://github.com/A2chitect), [@&#8203;abitme](https://github.com/abitme), [@&#8203;abundantbeing](https://github.com/abundantbeing), [@&#8203;acewong7](https://github.com/acewong7), [@&#8203;acgh213](https://github.com/acgh213), [@&#8203;adamcap926](https://github.com/adamcap926),
[@&#8203;addelh](https://github.com/addelh), [@&#8203;adikpb](https://github.com/adikpb), [@&#8203;Adolanium](https://github.com/Adolanium), [@&#8203;adurham](https://github.com/adurham), [@&#8203;adybag14-cyber](https://github.com/adybag14-cyber), [@&#8203;afourniernv](https://github.com/afourniernv), [@&#8203;ag9920](https://github.com/ag9920), [@&#8203;ahmadalzaro1](https://github.com/ahmadalzaro1), [@&#8203;Ahmett101](https://github.com/Ahmett101),
[@&#8203;ai-ag2026](https://github.com/ai-ag2026), [@&#8203;AIalliAI](https://github.com/AIalliAI), [@&#8203;aider4ryder](https://github.com/aider4ryder), [@&#8203;Ailirag](https://github.com/Ailirag), [@&#8203;Aintworth](https://github.com/Aintworth), [@&#8203;airo7](https://github.com/airo7), [@&#8203;AiwendilInTheWoods](https://github.com/AiwendilInTheWoods), [@&#8203;akivavh](https://github.com/akivavh), [@&#8203;AL-ZiLLA](https://github.com/AL-ZiLLA),
[@&#8203;Al3xand3r1987](https://github.com/Al3xand3r1987), [@&#8203;albertodepaola](https://github.com/albertodepaola), [@&#8203;aldoeliacim](https://github.com/aldoeliacim), [@&#8203;aleksclark](https://github.com/aleksclark), [@&#8203;AlexanderPrendota](https://github.com/AlexanderPrendota), [@&#8203;alexdev03](https://github.com/alexdev03), [@&#8203;AlexFucuson9](https://github.com/AlexFucuson9),
[@&#8203;AlexGabbia](https://github.com/AlexGabbia), [@&#8203;AlexMnrs](https://github.com/AlexMnrs), [@&#8203;algf](https://github.com/algf), [@&#8203;Allecpu](https://github.com/Allecpu), [@&#8203;allin2](https://github.com/allin2), [@&#8203;alt-glitch](https://github.com/alt-glitch), [@&#8203;amanning3390](https://github.com/amanning3390), [@&#8203;andrexibiza](https://github.com/andrexibiza), [@&#8203;andyst-dev](https://github.com/andyst-dev),
[@&#8203;angel12](https://github.com/angel12), [@&#8203;angeon922-collab](https://github.com/angeon922-collab), [@&#8203;Angriff36](https://github.com/Angriff36), [@&#8203;aniruddhaadak80](https://github.com/aniruddhaadak80), [@&#8203;annguyenNous](https://github.com/annguyenNous), [@&#8203;anuvratrastogi](https://github.com/anuvratrastogi), [@&#8203;Aoshi-Dev](https://github.com/Aoshi-Dev),
[@&#8203;appletechie](https://github.com/appletechie), [@&#8203;arccat-114](https://github.com/arccat-114), [@&#8203;arcimun](https://github.com/arcimun), [@&#8203;ArthurFranckPat](https://github.com/ArthurFranckPat), [@&#8203;aryaxo](https://github.com/aryaxo), [@&#8203;asdasdadhj](https://github.com/asdasdadhj), [@&#8203;ashah360](https://github.com/ashah360), [@&#8203;AshuJoshi](https://github.com/AshuJoshi), [@&#8203;asimons81](https://github.com/asimons81),
[@&#8203;assimovt](https://github.com/assimovt), [@&#8203;austinpickett](https://github.com/austinpickett), [@&#8203;AVW7](https://github.com/AVW7), [@&#8203;Axmr1](https://github.com/Axmr1), [@&#8203;aydnOktay](https://github.com/aydnOktay), [@&#8203;ayushnangia](https://github.com/ayushnangia), [@&#8203;baihemax](https://github.com/baihemax), [@&#8203;bananawalnut](https://github.com/bananawalnut), [@&#8203;Bartok9](https://github.com/Bartok9),
[@&#8203;bashrusakh](https://github.com/bashrusakh), [@&#8203;bbednarski9](https://github.com/bbednarski9), [@&#8203;BearHuddleston](https://github.com/BearHuddleston), [@&#8203;benbarclay](https://github.com/benbarclay), [@&#8203;benfrank241](https://github.com/benfrank241), [@&#8203;beplee](https://github.com/beplee), [@&#8203;bgrablin](https://github.com/bgrablin), [@&#8203;bka9](https://github.com/bka9), [@&#8203;BkashJEE](https://github.com/BkashJEE),
[@&#8203;BlackishGreen33](https://github.com/BlackishGreen33), [@&#8203;BlakeB254](https://github.com/BlakeB254), [@&#8203;blunkjamie-dev](https://github.com/blunkjamie-dev), [@&#8203;BobClawblaw](https://github.com/BobClawblaw), [@&#8203;bradmarshall987](https://github.com/bradmarshall987), [@&#8203;brian717](https://github.com/brian717), [@&#8203;briandevans](https://github.com/briandevans),
[@&#8203;BrianFranco](https://github.com/BrianFranco), [@&#8203;BrinShadewater](https://github.com/BrinShadewater), [@&#8203;brucexu-eth](https://github.com/brucexu-eth), [@&#8203;BrunoBza](https://github.com/BrunoBza), [@&#8203;buffpesos](https://github.com/buffpesos), [@&#8203;burak33bb](https://github.com/burak33bb), [@&#8203;C-EXCITE-STUDIO](https://github.com/C-EXCITE-STUDIO), [@&#8203;c-pompa](https://github.com/c-pompa),
[@&#8203;cadezhou](https://github.com/cadezhou), [@&#8203;calvinnwq](https://github.com/calvinnwq), [@&#8203;capt-marbles](https://github.com/capt-marbles), [@&#8203;carbongotfound](https://github.com/carbongotfound), [@&#8203;carlotestor](https://github.com/carlotestor), [@&#8203;Carry00](https://github.com/Carry00), [@&#8203;cation98](https://github.com/cation98), [@&#8203;ccowan93](https://github.com/ccowan93),
[@&#8203;cedricziel](https://github.com/cedricziel), [@&#8203;cervantesh](https://github.com/cervantesh), [@&#8203;cfdude](https://github.com/cfdude), [@&#8203;Chadmc9889](https://github.com/Chadmc9889), [@&#8203;CharZhou](https://github.com/CharZhou), [@&#8203;chelsealong](https://github.com/chelsealong), [@&#8203;chesterXalan](https://github.com/chesterXalan), [@&#8203;chillerno1](https://github.com/chillerno1),
[@&#8203;Christopher-Schulze](https://github.com/Christopher-Schulze), [@&#8203;chukirk-svg](https://github.com/chukirk-svg), [@&#8203;cicav](https://github.com/cicav), [@&#8203;citizendev9c](https://github.com/citizendev9c), [@&#8203;cj52973](https://github.com/cj52973), [@&#8203;clarkvines](https://github.com/clarkvines), [@&#8203;ClintonEmok](https://github.com/ClintonEmok), [@&#8203;clyu168](https://github.com/clyu168),
[@&#8203;cmoiccool](https://github.com/cmoiccool), [@&#8203;codexbt](https://github.com/codexbt), [@&#8203;coe0718](https://github.com/coe0718), [@&#8203;Cossackx](https://github.com/Cossackx), [@&#8203;coygeek](https://github.com/coygeek), [@&#8203;crazyhulk](https://github.com/crazyhulk), [@&#8203;CrazyWillBear](https://github.com/CrazyWillBear), [@&#8203;criptogus](https://github.com/criptogus), [@&#8203;cryptoyasenka](https://github.com/cryptoyasenka),
[@&#8203;ctaylor86](https://github.com/ctaylor86), [@&#8203;cvillarroel2](https://github.com/cvillarroel2), [@&#8203;cxxCoolStar](https://github.com/cxxCoolStar), [@&#8203;cycorld](https://github.com/cycorld), [@&#8203;dagbs](https://github.com/dagbs), [@&#8203;damadorPL](https://github.com/damadorPL), [@&#8203;DanBennettUK](https://github.com/DanBennettUK), [@&#8203;DanDo385](https://github.com/DanDo385),
[@&#8203;DannyFengTianYu](https://github.com/DannyFengTianYu), [@&#8203;Dannyzen](https://github.com/Dannyzen), [@&#8203;danspicytaco](https://github.com/danspicytaco), [@&#8203;dante32683](https://github.com/dante32683), [@&#8203;darko-mesaros](https://github.com/darko-mesaros), [@&#8203;daromaj](https://github.com/daromaj), [@&#8203;david-bartos-phrase](https://github.com/david-bartos-phrase),
[@&#8203;davidgut1982](https://github.com/davidgut1982), [@&#8203;DavidMetcalfe](https://github.com/DavidMetcalfe), [@&#8203;davidneyravyr](https://github.com/davidneyravyr), [@&#8203;daxro](https://github.com/daxro), [@&#8203;dcdexhome](https://github.com/dcdexhome), [@&#8203;deacon-botdoctor](https://github.com/deacon-botdoctor), [@&#8203;deadczarvc](https://github.com/deadczarvc), [@&#8203;deaneeth](https://github.com/deaneeth),
[@&#8203;DECRUX9812](https://github.com/DECRUX9812), [@&#8203;deepeet-git](https://github.com/deepeet-git), [@&#8203;deniqlab](https://github.com/deniqlab), [@&#8203;DeseretSaint](https://github.com/DeseretSaint), [@&#8203;dhanesh](https://github.com/dhanesh), [@&#8203;Dhruv7201](https://github.com/Dhruv7201), [@&#8203;dhruvkej9](https://github.com/dhruvkej9), [@&#8203;digitalbase](https://github.com/digitalbase),
[@&#8203;DmytroVolodymyrson](https://github.com/DmytroVolodymyrson), [@&#8203;dokterdok](https://github.com/dokterdok), [@&#8203;Dolverin](https://github.com/Dolverin), [@&#8203;dombejar](https://github.com/dombejar), [@&#8203;doncazper](https://github.com/doncazper), [@&#8203;dougatbuck](https://github.com/dougatbuck), [@&#8203;douxy1994](https://github.com/douxy1994), [@&#8203;dpersek](https://github.com/dpersek), [@&#8203;dplush](https://github.com/dplush),
[@&#8203;Drexuxux](https://github.com/Drexuxux), [@&#8203;drissman](https://github.com/drissman), [@&#8203;dromai](https://github.com/dromai), [@&#8203;dtownsel](https://github.com/dtownsel), [@&#8203;duclucky](https://github.com/duclucky), [@&#8203;Dudeman456](https://github.com/Dudeman456), [@&#8203;Dusk1e](https://github.com/Dusk1e), [@&#8203;dvbaecker](https://github.com/dvbaecker), [@&#8203;e-macgregor](https://github.com/e-macgregor),
[@&#8203;EAbaracus](https://github.com/EAbaracus), [@&#8203;eaglezzz0522-cloud](https://github.com/eaglezzz0522-cloud), [@&#8203;Eapwrk](https://github.com/Eapwrk), [@&#8203;easyvibecoding](https://github.com/easyvibecoding), [@&#8203;echoes666](https://github.com/echoes666), [@&#8203;egilewski](https://github.com/egilewski), [@&#8203;ehz0ah](https://github.com/ehz0ah), [@&#8203;ekinnee](https://github.com/ekinnee), [@&#8203;ekzhang](https://github.com/ekzhang),
[@&#8203;elbukott1](https://github.com/elbukott1), [@&#8203;elisam0](https://github.com/elisam0), [@&#8203;elphamale](https://github.com/elphamale), [@&#8203;ElSnacko](https://github.com/ElSnacko), [@&#8203;embwl0x](https://github.com/embwl0x), [@&#8203;emozilla](https://github.com/emozilla), [@&#8203;EMT5320](https://github.com/EMT5320), [@&#8203;EndeavorYen](https://github.com/EndeavorYen), [@&#8203;Enough1122](https://github.com/Enough1122),
[@&#8203;enwaiax](https://github.com/enwaiax), [@&#8203;epeterpanz](https://github.com/epeterpanz), [@&#8203;EpicIsTheOne](https://github.com/EpicIsTheOne), [@&#8203;eric-senyao](https://github.com/eric-senyao), [@&#8203;ernst-bablick](https://github.com/ernst-bablick), [@&#8203;Eros-ITA](https://github.com/Eros-ITA), [@&#8203;erosika](https://github.com/erosika), [@&#8203;ethernet8023](https://github.com/ethernet8023),
[@&#8203;etzelvon](https://github.com/etzelvon), [@&#8203;EvanProgramming](https://github.com/EvanProgramming), [@&#8203;EvenXieWF](https://github.com/EvenXieWF), [@&#8203;explainanalyze](https://github.com/explainanalyze), [@&#8203;f-trycua](https://github.com/f-trycua), [@&#8203;fanfan343](https://github.com/fanfan343), [@&#8203;fangliquanflq](https://github.com/fangliquanflq), [@&#8203;fattchris](https://github.com/fattchris),
[@&#8203;felix-windsor](https://github.com/felix-windsor), [@&#8203;Finn763](https://github.com/Finn763), [@&#8203;flaviovargasbrandao](https://github.com/flaviovargasbrandao), [@&#8203;Fly-onlyone](https://github.com/Fly-onlyone), [@&#8203;flyingdoubleG](https://github.com/flyingdoubleG), [@&#8203;forkercat](https://github.com/forkercat),
[@&#8203;francialisomlimoeiro](https://github.com/francialisomlimoeiro), [@&#8203;francip](https://github.com/francip), [@&#8203;frankmendes1979](https://github.com/frankmendes1979), [@&#8203;fred0m](https://github.com/fred0m), [@&#8203;frendo](https://github.com/frendo), [@&#8203;frizikk](https://github.com/frizikk), [@&#8203;frohsinnllc](https://github.com/frohsinnllc), [@&#8203;Frowtek](https://github.com/Frowtek),
[@&#8203;fukutake1207](https://github.com/fukutake1207), [@&#8203;fyzanshaik](https://github.com/fyzanshaik), [@&#8203;GarlicGo](https://github.com/GarlicGo), [@&#8203;Gateton](https://github.com/Gateton), [@&#8203;georgell-ceo](https://github.com/georgell-ceo), [@&#8203;gfriesen1](https://github.com/gfriesen1), [@&#8203;gigabyte22](https://github.com/gigabyte22), [@&#8203;gigashad](https://github.com/gigashad), [@&#8203;gijoby](https://github.com/gijoby),
[@&#8203;gitong](https://github.com/gitong), [@&#8203;gkd2323c](https://github.com/gkd2323c), [@&#8203;gnanirahulnutakki](https://github.com/gnanirahulnutakki), [@&#8203;GodsBoy](https://github.com/GodsBoy), [@&#8203;gokay-ai](https://github.com/gokay-ai), [@&#8203;goktugvatandas](https://github.com/goktugvatandas), [@&#8203;golldyck](https://github.com/golldyck), [@&#8203;goodchang77](https://github.com/goodchang77), [@&#8203;GottZ](https://github.com/GottZ),
[@&#8203;grahfmusic](https://github.com/grahfmusic), [@&#8203;gregorustar-maker](https://github.com/gregorustar-maker), [@&#8203;greyvito](https://github.com/greyvito), [@&#8203;gsy324](https://github.com/gsy324), [@&#8203;guanla-zz](https://github.com/guanla-zz), [@&#8203;guilhermeartileshubsai](https://github.com/guilhermeartileshubsai), [@&#8203;guilhermeraiuga](https://github.com/guilhermeraiuga),
[@&#8203;h-mascot](https://github.com/h-mascot), [@&#8203;h8hawk](https://github.com/h8hawk), [@&#8203;Haakam21](https://github.com/Haakam21), [@&#8203;Haik-G](https://github.com/Haik-G), [@&#8203;halaprix](https://github.com/halaprix), [@&#8203;Halldrix](https://github.com/Halldrix), [@&#8203;handnewb](https://github.com/handnewb), [@&#8203;Hangzian](https://github.com/Hangzian), [@&#8203;hanhvs](https://github.com/hanhvs), [@&#8203;hansai-art](https://github.com/hansai-art),
[@&#8203;HAOWANG116](https://github.com/HAOWANG116), [@&#8203;HarishDarko](https://github.com/HarishDarko), [@&#8203;hbentel](https://github.com/hbentel), [@&#8203;helix4u](https://github.com/helix4u), [@&#8203;HenryGHJ](https://github.com/HenryGHJ), [@&#8203;hermias1](https://github.com/hermias1), [@&#8203;HexLab98](https://github.com/HexLab98), [@&#8203;hillimited](https://github.com/hillimited), [@&#8203;Hjharris1](https://github.com/Hjharris1),
[@&#8203;hkfiberlaser-svg](https://github.com/hkfiberlaser-svg), [@&#8203;honor2030](https://github.com/honor2030), [@&#8203;howdeploy](https://github.com/howdeploy), [@&#8203;hsearcy](https://github.com/hsearcy), [@&#8203;huklaa](https://github.com/huklaa), [@&#8203;hustwkr](https://github.com/hustwkr), [@&#8203;hutao562](https://github.com/hutao562), [@&#8203;hxwvaa](https://github.com/hxwvaa), [@&#8203;IAvecilla](https://github.com/IAvecilla),
[@&#8203;icemeng](https://github.com/icemeng), [@&#8203;infinitycrew39](https://github.com/infinitycrew39), [@&#8203;infocentr](https://github.com/infocentr), [@&#8203;InphinitiZ](https://github.com/InphinitiZ), [@&#8203;insane66613](https://github.com/insane66613), [@&#8203;Inspired-by-Atmosphere](https://github.com/Inspired-by-Atmosphere), [@&#8203;intelac](https://github.com/intelac),
[@&#8203;intellectronica](https://github.com/intellectronica), [@&#8203;isak-ialogics](https://github.com/isak-ialogics), [@&#8203;ishanparihar](https://github.com/ishanparihar), [@&#8203;isheng-eqi](https://github.com/isheng-eqi), [@&#8203;Ishman82](https://github.com/Ishman82), [@&#8203;iskysun96](https://github.com/iskysun96), [@&#8203;iso2kx](https://github.com/iso2kx), [@&#8203;itsflownium](https://github.com/itsflownium),
[@&#8203;izumi0uu](https://github.com/izumi0uu), [@&#8203;Jaaneek](https://github.com/Jaaneek), [@&#8203;Jackal991](https://github.com/Jackal991), [@&#8203;jackijianxa](https://github.com/jackijianxa), [@&#8203;jackoconner45](https://github.com/jackoconner45), [@&#8203;jackulau](https://github.com/jackulau), [@&#8203;jaimedhenriques](https://github.com/jaimedhenriques), [@&#8203;james47kjv](https://github.com/james47kjv),
[@&#8203;jbagdonas](https://github.com/jbagdonas), [@&#8203;jcjc81](https://github.com/jcjc81), [@&#8203;jdgg777](https://github.com/jdgg777), [@&#8203;jeeves-assistant](https://github.com/jeeves-assistant), [@&#8203;jeff-mettel](https://github.com/jeff-mettel), [@&#8203;Jefftree](https://github.com/Jefftree), [@&#8203;JElfferich](https://github.com/JElfferich), [@&#8203;jeremyrandria-debug](https://github.com/jeremyrandria-debug),
[@&#8203;JinUltimate1995](https://github.com/JinUltimate1995), [@&#8203;jirathip-k](https://github.com/jirathip-k), [@&#8203;jmmaloney4](https://github.com/jmmaloney4), [@&#8203;JoaoMarcos44](https://github.com/JoaoMarcos44), [@&#8203;joe-rodgers](https://github.com/joe-rodgers), [@&#8203;joe050860](https://github.com/joe050860), [@&#8203;John-Lussier](https://github.com/John-Lussier),
[@&#8203;Johnny-xuan](https://github.com/Johnny-xuan), [@&#8203;johnrazmus](https://github.com/johnrazmus), [@&#8203;johnsonAyo](https://github.com/johnsonAyo), [@&#8203;jonpol01](https://github.com/jonpol01), [@&#8203;JonthanaHanh](https://github.com/JonthanaHanh), [@&#8203;JoshPaulie](https://github.com/JoshPaulie), [@&#8203;Jreevo](https://github.com/Jreevo), [@&#8203;jtstothard](https://github.com/jtstothard),
[@&#8203;Julientalbot](https://github.com/Julientalbot), [@&#8203;justcarlosm](https://github.com/justcarlosm), [@&#8203;justinbowes](https://github.com/justinbowes), [@&#8203;justinjohnson25600](https://github.com/justinjohnson25600), [@&#8203;jwtor7](https://github.com/jwtor7), [@&#8203;k0rnacki](https://github.com/k0rnacki), [@&#8203;kadiratesdev](https://github.com/kadiratesdev),
[@&#8203;Kailigithub](https://github.com/Kailigithub), [@&#8203;kaishi00](https://github.com/kaishi00), [@&#8203;KarateWilly](https://github.com/KarateWilly), [@&#8203;kas-cor](https://github.com/kas-cor), [@&#8203;katie-lpd](https://github.com/katie-lpd), [@&#8203;Kavyrocom](https://github.com/Kavyrocom), [@&#8203;KBANTH](https://github.com/KBANTH), [@&#8203;kchernev](https://github.com/kchernev), [@&#8203;KeaneYan](https://github.com/KeaneYan),
[@&#8203;kernel-t1](https://github.com/kernel-t1), [@&#8203;KeroZelvin](https://github.com/KeroZelvin), [@&#8203;kerpopule](https://github.com/kerpopule), [@&#8203;KHALIDagara](https://github.com/KHALIDagara), [@&#8203;KhanCold](https://github.com/KhanCold), [@&#8203;khanhngoo](https://github.com/khanhngoo), [@&#8203;KIAgent01](https://github.com/KIAgent01), [@&#8203;kim-miram](https://github.com/kim-miram), [@&#8203;kimyxx](https://github.com/kimyxx),
[@&#8203;Kinkoolino-Hermes](https://github.com/Kinkoolino-Hermes), [@&#8203;kinsolee](https://github.com/kinsolee), [@&#8203;kitsonk](https://github.com/kitsonk), [@&#8203;klaus765](https://github.com/klaus765), [@&#8203;koltyj](https://github.com/koltyj), [@&#8203;konsisumer](https://github.com/konsisumer), [@&#8203;kronexoi](https://github.com/kronexoi), [@&#8203;krunkosaurus](https://github.com/krunkosaurus),
[@&#8203;kshitijk4poor](https://github.com/kshitijk4poor), [@&#8203;kudapara](https://github.com/kudapara), [@&#8203;kvnloo](https://github.com/kvnloo), [@&#8203;kweiner](https://github.com/kweiner), [@&#8203;kyssta-exe](https://github.com/kyssta-exe), [@&#8203;Kyzcreig](https://github.com/Kyzcreig), [@&#8203;laithrw](https://github.com/laithrw), [@&#8203;lakshyaag-tavily](https://github.com/lakshyaag-tavily), [@&#8203;landaun](https://github.com/landaun),
[@&#8203;laulopezreal](https://github.com/laulopezreal), [@&#8203;laviesony](https://github.com/laviesony), [@&#8203;lazy-idler](https://github.com/lazy-idler), [@&#8203;LBeghini](https://github.com/LBeghini), [@&#8203;leeclouddragon](https://github.com/leeclouddragon), [@&#8203;Leegenux](https://github.com/Leegenux), [@&#8203;LemonSchneid](https://github.com/LemonSchneid), [@&#8203;LeonardoLGDS](https://github.com/LeonardoLGDS),
[@&#8203;leonphull](https://github.com/leonphull), [@&#8203;LeonSGP43](https://github.com/LeonSGP43), [@&#8203;lepetitprince716-prog](https://github.com/lepetitprince716-prog), [@&#8203;Lesnak1](https://github.com/Lesnak1), [@&#8203;lesterlxt](https://github.com/lesterlxt), [@&#8203;lesyuk](https://github.com/lesyuk), [@&#8203;lEWFkRAD](https://github.com/lEWFkRAD), [@&#8203;lextiz](https://github.com/lextiz), [@&#8203;lgy1027](https://github.com/lgy1027),
[@&#8203;Lidang-Jiang](https://github.com/Lidang-Jiang), [@&#8203;lilShawtty-byte](https://github.com/lilShawtty-byte), [@&#8203;lin-hongkuan](https://github.com/lin-hongkuan), [@&#8203;liuhao1024](https://github.com/liuhao1024), [@&#8203;liusencomic-cyber](https://github.com/liusencomic-cyber), [@&#8203;lkz-de](https://github.com/lkz-de), [@&#8203;loafoe](https://github.com/loafoe), [@&#8203;locker95](https://github.com/locker95),
[@&#8203;LordMelkor](https://github.com/LordMelkor), [@&#8203;lorzl](https://github.com/lorzl), [@&#8203;lost9999](https://github.com/lost9999), [@&#8203;loulanyue](https://github.com/loulanyue), [@&#8203;LovePlayCode](https://github.com/LovePlayCode), [@&#8203;luckygreen](https://github.com/luckygreen), [@&#8203;lukeroberts](https://github.com/lukeroberts), [@&#8203;luoxiao6645](https://github.com/luoxiao6645), [@&#8203;luxles](https://github.com/luxles),
[@&#8203;m1k3s0](https://github.com/m1k3s0), [@&#8203;Mabolla](https://github.com/Mabolla), [@&#8203;MagMueller](https://github.com/MagMueller), [@&#8203;magnus919](https://github.com/magnus919), [@&#8203;magnuslundstedt](https://github.com/magnuslundstedt), [@&#8203;MaheshBhushan](https://github.com/MaheshBhushan), [@&#8203;MarcoFernstaedt](https://github.com/MarcoFernstaedt), [@&#8203;mariobgsp](https://github.com/mariobgsp),
[@&#8203;marketing2981](https://github.com/marketing2981), [@&#8203;markmcd](https://github.com/markmcd), [@&#8203;markmnl](https://github.com/markmnl), [@&#8203;MarkVLK](https://github.com/MarkVLK), [@&#8203;marzukia](https://github.com/marzukia), [@&#8203;Mat-London](https://github.com/Mat-London), [@&#8203;matsvarn](https://github.com/matsvarn), [@&#8203;mattprusak](https://github.com/mattprusak), [@&#8203;MaximCrabbe](https://github.com/MaximCrabbe),
[@&#8203;maxmilian](https://github.com/maxmilian), [@&#8203;mehmetkr-31](https://github.com/mehmetkr-31), [@&#8203;Mengchee118](https://github.com/Mengchee118), [@&#8203;menhguin](https://github.com/menhguin), [@&#8203;metamindedu](https://github.com/metamindedu), [@&#8203;michaelHMK](https://github.com/michaelHMK), [@&#8203;michaelsam94](https://github.com/michaelsam94), [@&#8203;milnerrad](https://github.com/milnerrad),
[@&#8203;MindDragonLabs](https://github.com/MindDragonLabs), [@&#8203;misterdas](https://github.com/misterdas), [@&#8203;mjolley9](https://github.com/mjolley9), [@&#8203;mmcallister8](https://github.com/mmcallister8), [@&#8203;mmcclean-aws](https://github.com/mmcclean-aws), [@&#8203;mmchuangyt-ai](https://github.com/mmchuangyt-ai), [@&#8203;moisesvalero](https://github.com/moisesvalero), [@&#8203;mollusk](https://github.com/mollusk),
[@&#8203;monerostar](https://github.com/monerostar), [@&#8203;Morad37](https://github.com/Morad37), [@&#8203;mrkillbob](https://github.com/mrkillbob), [@&#8203;mrmixx-max](https://github.com/mrmixx-max), [@&#8203;mrsucesso](https://github.com/mrsucesso), [@&#8203;MrTheSoulz](https://github.com/MrTheSoulz), [@&#8203;MustafaK99](https://github.com/MustafaK99), [@&#8203;myk0la-b](https://github.com/myk0la-b), [@&#8203;mzkarami](https://github.com/mzkarami),
[@&#8203;n-leezy](https://github.com/n-leezy), [@&#8203;n1majne3](https://github.com/n1majne3), [@&#8203;NaMinhyeok](https://github.com/NaMinhyeok), [@&#8203;nanami7777777](https://github.com/nanami7777777), [@&#8203;nankingjing](https://github.com/nankingjing), [@&#8203;natebransc](https://github.com/natebransc), [@&#8203;nateEc](https://github.com/nateEc), [@&#8203;Navlem](https://github.com/Navlem), [@&#8203;nbxuhk](https://github.com/nbxuhk),
[@&#8203;nductien](https://github.com/nductien), [@&#8203;Ne0teric](https://github.com/Ne0teric), [@&#8203;NealZhouPanda](https://github.com/NealZhouPanda), [@&#8203;necoweb3](https://github.com/necoweb3), [@&#8203;negroni334](https://github.com/negroni334), [@&#8203;nftpoetrist](https://github.com/nftpoetrist), [@&#8203;nicochase](https://github.com/nicochase), [@&#8203;Nicolas-Formenton](https://github.com/Nicolas-Formenton),
[@&#8203;nicolasdmolina](https://github.com/nicolasdmolina), [@&#8203;nikitaBarkov](https://github.com/nikitaBarkov), [@&#8203;NikolaRHristov](https://github.com/NikolaRHristov), [@&#8203;noahingh](https://github.com/noahingh), [@&#8203;nolanchic](https://github.com/nolanchic), [@&#8203;NorethSea](https://github.com/NorethSea), [@&#8203;notkisk](https://github.com/notkisk), [@&#8203;notwitcheer](https://github.com/notwitcheer),
[@&#8203;NousResearch](https://github.com/NousResearch), [@&#8203;null-runner](https://github.com/null-runner), [@&#8203;ojassharma7](https://github.com/ojassharma7), [@&#8203;oliver-mee](https://github.com/oliver-mee), [@&#8203;olympusbuildz](https://github.com/olympusbuildz), [@&#8203;OmarB97](https://github.com/OmarB97), [@&#8203;ooiuuii](https://github.com/ooiuuii), [@&#8203;openclaww-xz](https://github.com/openclaww-xz),
[@&#8203;opti-josh-holt](https://github.com/opti-josh-holt), [@&#8203;osgeek90](https://github.com/osgeek90), [@&#8203;ousiaresearch](https://github.com/ousiaresearch), [@&#8203;OutThisLife](https://github.com/OutThisLife), [@&#8203;Owen-narcissus](https://github.com/Owen-narcissus), [@&#8203;paoloantinori](https://github.com/paoloantinori), [@&#8203;Parker-Fawcett](https://github.com/Parker-Fawcett),
[@&#8203;pasevin](https://github.com/pasevin), [@&#8203;pasmud](https://github.com/pasmud), [@&#8203;PaulBlackSwan](https://github.com/PaulBlackSwan), [@&#8203;paultaki](https://github.com/paultaki), [@&#8203;peetteerr](https://github.com/peetteerr), [@&#8203;pefontana](https://github.com/pefontana), [@&#8203;Per0-1](https://github.com/Per0-1), [@&#8203;pierrenode](https://github.com/pierrenode), [@&#8203;PINKIIILQWQ](https://github.com/PINKIIILQWQ),
[@&#8203;pittosporum-seu](https://github.com/pittosporum-seu), [@&#8203;pju-hoge](https://github.com/pju-hoge), [@&#8203;plcunha](https://github.com/plcunha), [@&#8203;Pluviobyte](https://github.com/Pluviobyte), [@&#8203;pmos69](https://github.com/pmos69), [@&#8203;pnascimento9596](https://github.com/pnascimento9596), [@&#8203;poisdahl](https://github.com/poisdahl), [@&#8203;potatosalad](https://github.com/potatosalad),
[@&#8203;prashantjain25](https://github.com/prashantjain25), [@&#8203;PRATHAMESH75](https://github.com/PRATHAMESH75), [@&#8203;professorpalmer](https://github.com/professorpalmer), [@&#8203;projetsjsl](https://github.com/projetsjsl), [@&#8203;protas-box](https://github.com/protas-box), [@&#8203;qazasdsdqaza](https://github.com/qazasdsdqaza), [@&#8203;QDung210](https://github.com/QDung210),
[@&#8203;qixuancao](https://github.com/qixuancao), [@&#8203;QuarkAssistant](https://github.com/QuarkAssistant), [@&#8203;quocanh261997](https://github.com/quocanh261997), [@&#8203;ragingbulld](https://github.com/ragingbulld), [@&#8203;rainbowgore](https://github.com/rainbowgore), [@&#8203;rapsealk](https://github.com/rapsealk), [@&#8203;Raven26-VooDoo](https://github.com/Raven26-VooDoo),
[@&#8203;RaviTharuma](https://github.com/RaviTharuma), [@&#8203;RayCharlizard](https://github.com/RayCharlizard), [@&#8203;razultull](https://github.com/razultull), [@&#8203;re-ITRT](https://github.com/re-ITRT), [@&#8203;Reksely](https://github.com/Reksely), [@&#8203;RelaxJonh](https://github.com/RelaxJonh), [@&#8203;repfigit](https://github.com/repfigit), [@&#8203;RGerrish](https://github.com/RGerrish), [@&#8203;RibatTRW](https://github.com/RibatTRW),
[@&#8203;RichardGuan1](https://github.com/RichardGuan1), [@&#8203;RichardHojunJang](https://github.com/RichardHojunJang), [@&#8203;richardhowes](https://github.com/richardhowes), [@&#8203;RickyYii](https://github.com/RickyYii), [@&#8203;rikkarth](https://github.com/rikkarth), [@&#8203;rille111](https://github.com/rille111), [@&#8203;Ringo6107](https://github.com/Ringo6107), [@&#8203;rjhilgefort](https://github.com/rjhilgefort),
[@&#8203;rjvandeve](https://github.com/rjvandeve), [@&#8203;rkfshakti](https://github.com/rkfshakti), [@&#8203;rlaope](https://github.com/rlaope), [@&#8203;Rmohid](https://github.com/Rmohid), [@&#8203;rob-maron](https://github.com/rob-maron), [@&#8203;rodrigogs](https://github.com/rodrigogs), [@&#8203;royalaid](https://github.com/royalaid), [@&#8203;royzhrxy-glitch](https://github.com/royzhrxy-glitch), [@&#8203;rroverin](https://github.com/rroverin),
[@&#8203;rshi0212](https://github.com/rshi0212), [@&#8203;rsk-731](https://github.com/rsk-731), [@&#8203;rtcopenclawgh](https://github.com/rtcopenclawgh), [@&#8203;ruangraung](https://github.com/ruangraung), [@&#8203;rudrakshchahal](https://github.com/rudrakshchahal), [@&#8203;ruochu88s](https://github.com/ruochu88s), [@&#8203;rweddle](https://github.com/rweddle), [@&#8203;ryankhart](https://github.com/ryankhart), [@&#8203;S-Claw](https://github.com/S-Claw),
[@&#8203;Sahil-SS9](https://github.com/Sahil-SS9), [@&#8203;salch-cred](https://github.com/salch-cred), [@&#8203;sam7894604](https://github.com/sam7894604), [@&#8203;samclams](https://github.com/samclams), [@&#8203;saralilyb](https://github.com/saralilyb), [@&#8203;sashmatash](https://github.com/sashmatash), [@&#8203;sasquatch9818](https://github.com/sasquatch9818), [@&#8203;satotakumi](https://github.com/satotakumi),
[@&#8203;ScaleLeanChris](https://github.com/ScaleLeanChris), [@&#8203;SeashoreShi](https://github.com/SeashoreShi), [@&#8203;serefyarar](https://github.com…
melon-xf added a commit to melon-xf/hermes-agent that referenced this pull request Sep 3, 2026
…ndow

Detached update hand-off on every OS: quit → hermes update → reopen, with one dumb shim window
andrexibiza added a commit to andrexibiza/hermes-agent that referenced this pull request Sep 5, 2026
A delayed browser could miss the 900ms terminal event and spin forever after the updater exited. Retain terminal delivery until the page acknowledges it, bound unavailable-client teardown and failed requests, and preserve a truthful final display.

Fixes NousResearch#103747. Builds on OutThisLife and Teknium detached handoff work in NousResearch#83634 and the NousResearch#75895 quiet-window design. Continues Axl Ibiza Windows update investigation (NousResearch#60233, NousResearch#94107, NousResearch#100763), including source/review contributions carried by merged NousResearch#93353 and NousResearch#85170. Existing NousResearch#102373, NousResearch#103140, NousResearch#95719, NousResearch#97299 and NousResearch#103632 retain their separate scopes.
teknium1 pushed a commit that referenced this pull request Sep 6, 2026
A delayed browser could miss the 900ms terminal event and spin forever after the updater exited. Retain terminal delivery until the page acknowledges it, bound unavailable-client teardown and failed requests, and preserve a truthful final display.

Fixes #103747. Builds on OutThisLife and Teknium detached handoff work in #83634 and the #75895 quiet-window design. Continues Axl Ibiza Windows update investigation (#60233, #94107, #100763), including source/review contributions carried by merged #93353 and #85170. Existing #102373, #103140, #95719, #97299 and #103632 retain their separate scopes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area/install-update Installer, updater, packaging, wheels, doctor comp/desktop Electron desktop app (apps/desktop/*) P3 Low — cosmetic, nice to have platform/windows Native Windows-specific behavior or breakage sweeper:risk-compatibility Sweeper risk: may break existing users, config, migrations, defaults, or upgrades sweeper:risk-platform-windows Sweeper risk: may break or behave differently on native Windows type/feature New feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants