instar 1.3.503 → 1.3.504

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,51 @@
1
+ # Upgrade Guide — vNEXT
2
+
3
+ <!-- assembled-by: assemble-next-md -->
4
+ <!-- bump: patch -->
5
+
6
+ ## What Changed
7
+
8
+ WS1.1 of the converged multi-machine-seamlessness spec — the pieces the durable-queue
9
+ merge (#1079, which already shipped the receiver half) did not cover:
10
+
11
+ - **Drain spawn-boundary ownership re-check**: ownership moving between route()'s
12
+ verdict and the spawn produced the F20 double-spawn; a non-owner spawn now bounces
13
+ to `un-routable ('ownership-moved-before-spawn')` and re-queues for re-routing.
14
+ - **`MachineCapacity.seamlessnessFlags`** (spec invariant 5): bounded fixed-size
15
+ capability advertisement (`ws11DeliverReceive`) on the authenticated heartbeat,
16
+ live-only (a dark queue withdraws it next heartbeat). Absent = non-participant.
17
+ - **Sender-side skew gate** (`SessionRouter.ownerSupportsForward`): a live owner not
18
+ advertising durable receive is never forwarded to — the 501→retry→failover path
19
+ would STEAL the conversation from a healthy machine. Messages wait in the durable
20
+ queue, self-healing on the owner's upgrade. Unknown/absent → exactly today's
21
+ behavior.
22
+
23
+ Inert without the pool/queue layer (ships dark). Phase-C clean: fixed-size
24
+ advertisement, O(1) local reads, no LAN or interactive assumptions.
25
+
26
+ ## What to Tell Your User
27
+
28
+ - "When my conversations move between machines, three new guards make the handoff
29
+ airtight: no duplicate sessions from mid-move races, machines only receive
30
+ forwarded messages they can durably accept, and a machine that's merely behind on
31
+ updates never gets its conversations taken away — messages just wait safely until
32
+ it catches up."
33
+
34
+ ## Summary of New Capabilities
35
+
36
+ | Capability | How to Use |
37
+ |-----------|-----------|
38
+ | Capability-gated cross-machine delivery | Automatic within the multi-machine layer (dark until enabled) |
39
+
40
+ ## Evidence
41
+
42
+ - `tests/unit/SessionRouter.test.ts` +4: the skew gate's full decision table (true →
43
+ forward; false → queue, NO deliver, NO cas-steal; null/absent → back-compat).
44
+ - `tests/unit/ws11-dispatch-to-owner-wiring.test.ts` — 6: flags heartbeat roundtrip
45
+ incl. live-only withdrawal; the drain re-check seam + its exact placement (after
46
+ direct-inject, before spawn) pinned by source indices.
47
+ - 163 tests green across the queue/router/handler suites; tsc clean; build green.
48
+ - Independent second-pass audit (mandatory — dispatch + ownership surface): CONCUR,
49
+ 6 verification notes, zero concerns — including proof the gate cannot lose a
50
+ message (refused-queue falls through to delivery, never a drop) and never marks a
51
+ flag-gated owner suspect. `upgrades/side-effects/multi-machine-seamlessness-ws11.md`.
@@ -0,0 +1,105 @@
1
+ # Side-Effects Review — WS1.1 dispatch-to-owner (the remaining pieces)
2
+
3
+ **Spec:** docs/specs/MULTI-MACHINE-SEAMLESSNESS-SPEC.md §WS1.1 (converged + approved, on main)
4
+ **Ground truth discovered during build:** the durable-queue merge (#1079) ALREADY
5
+ shipped WS1.1's receiver half — `createDeliverMessageHandler` (epoch fencing, durable
6
+ remote receipts via the queue store + message ledger, sender re-validation, the
7
+ owner-side accept bridge with working-set + topic-profile pulls) — and the router's
8
+ forward/queue verdicts. This change ships ONLY what was genuinely missing:
9
+
10
+ 1. **Drain spawn-boundary ownership re-check** (`_ownershipReadForDrain`): route()'s
11
+ verdict and the spawn are not atomic — ownership moving in that window produced
12
+ the F20 double-spawn. A non-owner spawn now bounces to `un-routable
13
+ ('ownership-moved-before-spawn')`; the entry re-queues and the next drain pass
14
+ re-routes against fresh ownership. Direct-inject into an EXISTING live local
15
+ session is deliberately not gated (a live local session is the strongest
16
+ local-serving signal; its lifecycle belongs to the reconciler/closeout).
17
+ 2. **`MachineCapacity.seamlessnessFlags` advertisement** (invariant 5): a bounded
18
+ fixed-size summary (`ws11DeliverReceive`) self-reported each heartbeat from the
19
+ LIVE queue handle; registry passthrough is live-observation-only (a peer going
20
+ dark withdraws the capability — the safe direction). Absent = pre-spec peer or
21
+ dark feature = non-participant.
22
+ 3. **Sender-side skew gate** (`SessionRouter.ownerSupportsForward`): a LIVE owner
23
+ that does not advertise durable receive is never forwarded to — the forward would
24
+ 501 → retry → failover-STEAL from a live machine (the worst skew outcome). The
25
+ message waits in OUR durable queue (`'owner-lacks-ws11-receive'`), bounded by the
26
+ queue's own shelf life and self-healing on the owner's next heartbeat after
27
+ upgrade. Unknown (null) and absent-dep both preserve today's exact behavior.
28
+
29
+ ## 1. Over-block
30
+ The skew gate can hold messages for a live-but-unflagged owner. Bounds: the queue's
31
+ existing shelf-life/loss-reporting (never silent), the flags flipping true on the
32
+ owner's next heartbeat after its queue enables, and ownership genuinely moving. The
33
+ alternative (forward → 501 → failover steal) takes a conversation from a healthy
34
+ machine — strictly worse. Unknown-capability peers are NOT held (null → forward),
35
+ so the gate cannot over-trigger from a missing signal.
36
+
37
+ ## 2. Under-block
38
+ The drain re-check is a point-read — ownership can still move between the re-check
39
+ and the spawn completing (a narrower TOCTOU). The receipt + ledger dedup bound the
40
+ damage to one extra session at worst, which the post-transfer closeout reaps; full
41
+ elimination belongs to WS1.2's drain barrier. Named honestly, not silently claimed.
42
+
43
+ ## 3. Level-of-abstraction fit
44
+ Each piece sits at its owning layer: the re-check at the spawn boundary (the only
45
+ place the race exists), the flags on the existing heartbeat carrier (no new channel),
46
+ the gate in the router's dispatch decision (beside isMachineAlive, the analogous
47
+ check). No parallel mechanisms.
48
+
49
+ ## 4. Signal vs authority compliance
50
+ The skew gate holds narrow custody authority (queue vs forward) over a deterministic
51
+ signal (the peer's own self-advertisement on an authenticated heartbeat) and fails
52
+ open to today's behavior on unknown. The drain re-check removes a wrong action
53
+ (non-owner spawn) rather than adding authority. No message content, no user actions.
54
+
55
+ ## 5. Interactions
56
+ - Composes with the queue's hold-for-stability: a gated message is an ordinary queued
57
+ entry (same caps, same loss reporting, same drain re-routing).
58
+ - The existing receiver handler is untouched; the gate only prevents doomed sends.
59
+ - The reconciler (WS1.3, in CI) shortens how long ownership stays pointed at a
60
+ machine that can't serve — the two compose toward faster convergence.
61
+ - OwnerSuspectBreaker semantics preserved: the gate fires BEFORE forwarding, so a
62
+ flag-gated owner is never marked suspect for a 501 it never got to return.
63
+
64
+ ## 6. External surfaces
65
+ A new optional heartbeat field (additive; older peers ignore it — the established
66
+ quotaState/guardPosture precedent). No new mesh verbs, no new routes.
67
+
68
+ ## 7. Multi-machine posture (Cross-Machine Coherence)
69
+ This IS the multi-machine correctness core. Flags: replicated via the authenticated
70
+ heartbeat (named path), live-only by design. Gate + re-check: per-machine local
71
+ reads only on hot paths (spec rule). Phase C: the advertisement is fixed-size
72
+ regardless of pool size (never an inventory); the gate's per-owner read is O(1)
73
+ against the local registry; nothing assumes 2 machines or a LAN; headless VMs
74
+ advertise identically (no interactive step).
75
+
76
+ ## 8. Rollback cost
77
+ All three pieces are inert without the pool/queue layer (which ships dark).
78
+ Flag-flip rollback: disabling the queue withdraws the self-advertisement on the next
79
+ heartbeat AND nulls `_inboundQueue` (the gate's information source degrades to
80
+ null → today's behavior). The heartbeat field is additive data — no migration, no
81
+ cleanup. Revert-and-release covers the code.
82
+
83
+ ## Second-pass review
84
+ REQUIRED (inbound dispatch + ownership surface). Independent reviewer response
85
+ appended below.
86
+
87
+ <!-- second-pass reviewer response appended below by the independent reviewer -->
88
+
89
+ ### Independent second-pass review (2026-06-12)
90
+
91
+ **Concur with the review.**
92
+
93
+ 1. **Skew gate never marks a flag-gated owner suspect — verified.** In `SessionRouter.dispatchOne` (SessionRouter.ts:241-245) the `supports === false` branch returns a `queued` outcome and early-exits BEFORE `forwardToOwner`. `markOwnerSuspect` is only reachable inside `forwardToOwner` (line 306) and the owner-dead branch (249); the queue path touches neither. `tests/unit/SessionRouter.test.ts:276` asserts both `deliver` and `cas` are NOT called on the false case, structurally proving the gate fires first and no steal/suspect occurs. The artifact's §5 claim is true.
94
+
95
+ 2. **Gate + queue cannot lose a message — verified safe.** When the gate fires and `queueMessage` returns `'refused'` (queue dark / storage fail), the router returns `acked: false`. At the ingress gate (server.ts:1970-1983) `isRemotelyHandled` is false and the custody short-circuit at 1978 requires `outcome.acked` true, so an un-acked `queued` falls through to local dispatch (line 2000+) — delivery, not a drop. This is exactly the spec's layered rule (invariant 5 line 96-97 "durable queue where available, else today's exact behavior"): the §3 queue path covers queue-available, the refused fall-through covers no-queue. The implementation satisfies BOTH the invariant-5 conservative-side clause and the §WS1.1 line-137 "local inject, never a drop" clause — no contradiction.
96
+
97
+ 3. **Drain re-check placement is correct — verified.** server.ts:2200-2205 runs AFTER `route()` (2142) and AFTER the direct-inject path (which returns at 2184/2186), only on the spawn path, guarded by `_ownershipReadForDrain && _meshSelfId` (null on a dark/single-machine agent → skipped, invariant 6). It cannot block direct-inject (that path already returned) and runs strictly after route()'s now-stale-able ownership consult — the only place the TOCTOU exists. `tests/unit/ws11-dispatch-to-owner-wiring.test.ts:60-66` pins this ordering via source indices.
98
+
99
+ 4. **`'un-routable'` re-queues, never drops — verified.** The new `ownership-moved-before-spawn` → `un-routable` disposition is handled in QueueDrainLoop.ts:731-736 via `releaseWithBackoff(row, attempts+1, …)` — release back to `queued` + backoff + attempts++, re-drained against fresh ownership next pass. The existing attempts-exhaustion path (648/661-663) reports loss loudly (`reportLoss`, terminal `attempts-exhausted`) rather than silently dropping — the bound is honest.
100
+
101
+ 5. **Live-only flags passthrough genuinely clears — verified at the registry.** `recordHeartbeat` REPLACES the whole `obs` (MachinePoolRegistry.ts:205), and `assemble` reads `seamlessnessFlags: live?.obs.seamlessnessFlags` (273) with NO `postureStore`-style durable fallback (unlike `guardPosture`, which deliberately carries forward at 200/277-285). A flags-less heartbeat therefore nulls the field — confirmed by the real-registry test at ws11-dispatch-to-owner-wiring.test.ts:40-45. Self-advertisement is `!!_inboundQueue` (server.ts:12656), so a dark queue withdraws the capability next beat — the safe direction.
102
+
103
+ 6. **"Receiver half already shipped" claim is true.** `createDeliverMessageHandler` (DeliverMessageHandler.ts:44-66) implements epoch fencing (50-53 → `stale-ownership`), sender re-validation BEFORE receipt (54-60 → `sender-rejected`), and idempotent durable receipt/dedupe (61-62 → `duplicate`). Wired at server.ts:12820-12844 with `ownerEpochOf`, `recordReceipt` (queue receipt + message ledger), and `validateSender` against THIS machine's UserManager. §2's residual-TOCTOU honesty holds — the point-read re-check narrows but does not eliminate the window; the receipt+ledger dedup bounds the damage to one extra session reaped by closeout, and full elimination is correctly deferred to WS1.2's drain barrier (not silently claimed as done).
104
+
105
+ Both relevant unit files run green locally (33 tests passed). No claim in the artifact was found untrue in code.