@integrity-labs/agt-cli 0.28.458 → 0.28.460
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.
- package/dist/bin/agt.js +4 -4
- package/dist/{chunk-KAIH24HZ.js → chunk-BWH5XTDU.js} +25 -4
- package/dist/chunk-BWH5XTDU.js.map +1 -0
- package/dist/{chunk-QIQQ46NH.js → chunk-EBSFYBRI.js} +3 -3
- package/dist/{claude-pair-runtime-CVCPBJOZ.js → claude-pair-runtime-YNOY2ATX.js} +2 -2
- package/dist/lib/manager-worker.js +37 -11
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +1134 -788
- package/dist/mcp/origami.js +11 -1
- package/dist/mcp/slack-channel.js +539 -139
- package/dist/mcp/telegram-channel.js +482 -94
- package/dist/{persistent-session-EVLWDI3I.js → persistent-session-KGRCIIS5.js} +2 -2
- package/dist/{responsiveness-probe-EGP2F3WD.js → responsiveness-probe-4FVGB6NY.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-KAIH24HZ.js.map +0 -1
- /package/dist/{chunk-QIQQ46NH.js.map → chunk-EBSFYBRI.js.map} +0 -0
- /package/dist/{claude-pair-runtime-CVCPBJOZ.js.map → claude-pair-runtime-YNOY2ATX.js.map} +0 -0
- /package/dist/{persistent-session-EVLWDI3I.js.map → persistent-session-KGRCIIS5.js.map} +0 -0
- /package/dist/{responsiveness-probe-EGP2F3WD.js.map → responsiveness-probe-4FVGB6NY.js.map} +0 -0
package/dist/mcp/origami.js
CHANGED
|
@@ -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:
|
|
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"
|