@integrity-labs/agt-cli 0.28.458 → 0.28.459

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.
@@ -39886,6 +39886,16 @@ var UNKNOWN_RATE_LIMIT = Object.freeze({
39886
39886
  text: null
39887
39887
  });
39888
39888
 
39889
+ // ../core/dist/claude-code-usage/turn-failure-classifier.js
39890
+ var UNKNOWN_TURN_FAILURE = Object.freeze({
39891
+ outcome: "unknown",
39892
+ atMs: null,
39893
+ failureClass: null,
39894
+ httpStatus: null,
39895
+ attempt: null,
39896
+ maxAttempts: null
39897
+ });
39898
+
39889
39899
  // ../core/dist/kanban/state-machine.js
39890
39900
  var KANBAN_STATUSES = [
39891
39901
  "backlog",
@@ -40712,7 +40722,7 @@ var FLAG_REGISTRY = [
40712
40722
  },
40713
40723
  {
40714
40724
  key: "wedge-transient-notice",
40715
- description: 'When a wedge-respawn was preceded by a transient LLM-API error (529/429/503/500 that exhausted its retries and wedged the turn), the manager writes the ENG-6058 give-up signal tagged reason=transient_overload so the channel sweeps post a friendly "I hit a brief overload \u2014 please resend" notice instead of leaving the user in silence (ENG-7360, extends ENG-6861 to the retry-exhaustion + wedge path). Boolean gate; ships dark \u2014 channel-visible copy soaks per host before going wide.',
40725
+ description: `Tell the person waiting when their turn dies on a transient LLM-API failure (529 overloaded / 5xx). TWO consumers now share this gate. (1) ENG-7360: a wedge-respawn preceded by such an error writes the ENG-6058 give-up signal tagged reason=transient_overload so the channel sweeps post a "please resend" notice. (2) ENG-8269: the channel MCPs watch the dispatched turn in Claude Code's own transcript and notify the conversation that was actually waiting \u2014 Slack, Telegram AND direct chat \u2014 plus a "still working on this" notice after ~3min on Slack/Telegram only (direct chat already shows a client-side one at 90s). NOTE: (2) fires on a MUCH larger population than (1) \u2014 any dispatched turn that dies, not only one that also wedged the session \u2014 and (1) has never actually been able to fire, because its pane.log detector cannot match the banner Claude Code renders today. So flipping this on is in practice enabling (2) for the first time. Boolean gate; ships dark \u2014 channel-visible copy soaks per host before going wide. Materialized into the channel-MCP spawn env: a Docker-isolated agent never mounts the host flags-cache, so a central flip reaches it only that way.`,
40716
40726
  flagType: "boolean",
40717
40727
  defaultValue: false,
40718
40728
  envVar: "AGT_WEDGE_TRANSIENT_NOTICE_ENABLED"