feat(site)+fix(daemon): live departures board; #79 mutex; serial gates (0.14.3)#80
Merged
Conversation
… the mutex; serial gates (0.14.3) The landing page gains its proof: a live departures board reading the repo's own agentcomm branch client-side — real agents, declared statuses, active dots, relative last-seen, raw-data link. Fail-open, textContent-only, capped, responsive. Two full-suite flakes in a row exposed real infrastructure debt, fixed rather than retried: (1) issue #79 — poll's spool snapshot ran outside the flush mutex, so under load a mid-delivery entry could vanish from the mirror for a cycle; the snapshot now takes the lock. (2) parallel test files spawned daemon storms that starved each other on loaded machines; vitest now runs files serially (fileParallelism: false) — determinism over contention, ~3min per run either way. Double-green gate before this commit. Closes #79 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Live board: client-side read of the repo's own bus branch (agents, statuses, active dots, raw-data link; fail-open, textContent-only). Daemon: spool snapshot under the flush mutex (closes #79). Tests: fileParallelism off — two consecutive full-suite greens locally.