@integrity-labs/agt-cli 0.28.11 → 0.28.13-canary.18

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.
@@ -14629,6 +14629,7 @@ function channelReplayEnabled() {
14629
14629
  function shouldReplayMarker(i) {
14630
14630
  if (!i.enabled) return false;
14631
14631
  if (!i.hasPayload) return false;
14632
+ if (i.discretionary) return false;
14632
14633
  if (!i.sessionAlive) return false;
14633
14634
  if (i.markerAgeMs < (i.minAgeMs ?? REPLY_WEDGED_THRESHOLD_MS)) return false;
14634
14635
  const paneFreshThreshold = i.paneFreshThresholdMs ?? ACK_PANE_FRESH_THRESHOLD_MS;
@@ -19379,7 +19380,11 @@ async function replayPendingSlackMarkers() {
19379
19380
  sessionAlive,
19380
19381
  markerAgeMs: ageMs,
19381
19382
  replayCount: marker.replay_count ?? 0,
19382
- paneFreshAgeMs
19383
+ paneFreshAgeMs,
19384
+ // ENG-6366: auto-followed un-mentioned thread inbound the agent may
19385
+ // legitimately silently skip — never re-deliver it (it never clears,
19386
+ // so it would otherwise re-push MAX_MARKER_REPLAYS times under replay).
19387
+ discretionary: marker.discretionary
19383
19388
  })) {
19384
19389
  continue;
19385
19390
  }
@@ -16286,6 +16286,7 @@ function channelReplayEnabled() {
16286
16286
  function shouldReplayMarker(i) {
16287
16287
  if (!i.enabled) return false;
16288
16288
  if (!i.hasPayload) return false;
16289
+ if (i.discretionary) return false;
16289
16290
  if (!i.sessionAlive) return false;
16290
16291
  if (i.markerAgeMs < (i.minAgeMs ?? REPLY_WEDGED_THRESHOLD_MS)) return false;
16291
16292
  const paneFreshThreshold = i.paneFreshThresholdMs ?? ACK_PANE_FRESH_THRESHOLD_MS;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integrity-labs/agt-cli",
3
- "version": "0.28.11",
3
+ "version": "0.28.13-canary.18",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {