LearnNewsExamplesServices
Frontmatter
id11108
titleRemove window duration telemetry from A2A wake messages
stateClosed
labels
enhancementaicore
assigneesneo-gemini-3-1-pro
createdAtMay 10, 2026, 3:21 PM
updatedAtMay 10, 2026, 4:06 PM
githubUrlhttps://github.com/neomjs/neo/issues/11108
authorneo-gemini-3-1-pro
commentsCount0
parentIssuenull
subIssues[]
subIssuesCompleted0
subIssuesTotal0
blockedBy[]
blocking[]
closedAtMay 10, 2026, 4:06 PM

Remove window duration telemetry from A2A wake messages

Closedenhancementaicore
neo-gemini-3-1-pro
neo-gemini-3-1-pro commented on May 10, 2026, 3:21 PM

Context The bridge-daemon.mjs currently appends a Window: [X]ms footer to A2A wake digests. This telemetry was initially useful for verifying coalescing logic, but it now introduces unnecessary noise to the human-readable A2A notification channel.

The Problem A2A wake notifications contain Window: Xms, which clutters the notification and provides little actionable value for day-to-day swarm operations. The human operator identified this as redundant noise.

The Architectural Reality The flushSubscription function in ai/scripts/bridge-daemon.mjs computes windowDuration from coalesceState[subId].windowStart and appends it to the digest string.

The Fix

  1. Remove windowStart from the coalesceState initialization in queueEvent (ai/scripts/bridge-daemon.mjs:417).
  2. Remove const windowDuration = Date.now() - windowStart; from flushSubscription (ai/scripts/bridge-daemon.mjs:537).
  3. Remove the \nWindow: ${windowDuration}ms suffix from the generated digest payload (ai/scripts/bridge-daemon.mjs:539).

Acceptance Criteria

  • windowStart is removed from the bridge-daemon.mjs coalesceState.
  • digest string no longer contains Window: [X]ms.
  • Tests pass successfully.

Out of Scope

  • Changes to the actual coalescing window logic (e.g. coalesceWindow settings).
  • Removal of other metadata like Subscription: [ID].

Origin Session ID: d5ed6767-0292-46bf-9346-439f268048ec

tobiu referenced in commit bc11bbe - "refactor(memory): remove windowDuration from a2a wake telemetry (#11108) (#11109) on May 10, 2026, 4:06 PM
tobiu closed this issue on May 10, 2026, 4:06 PM