@integrity-labs/agt-cli 0.28.861 → 0.28.863
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 +5 -5
- package/dist/{chunk-USHD2L3F.js → chunk-JG3EAFZO.js} +21 -2
- package/dist/chunk-JG3EAFZO.js.map +1 -0
- package/dist/{chunk-IQROQ3XJ.js → chunk-M5ICLV54.js} +4 -4
- package/dist/{chunk-G23CONQJ.js → chunk-PXDYKP5O.js} +2 -2
- package/dist/{claude-pair-runtime-6FJOWTEX.js → claude-pair-runtime-OWOZ2ZQ7.js} +2 -2
- package/dist/lib/manager-worker.js +14 -14
- package/dist/mcp/direct-chat-channel.js +20 -1
- package/dist/mcp/index.js +20 -1
- package/dist/mcp/origami.js +20 -1
- package/dist/mcp/slack-channel.js +365 -279
- package/dist/mcp/telegram-channel.js +20 -1
- package/dist/{persistent-session-6DET4JLF.js → persistent-session-GSXFKCVO.js} +3 -3
- package/dist/{responsiveness-probe-ZNKOWUIE.js → responsiveness-probe-GOM3ZYW3.js} +3 -3
- package/dist/{session-auth-dead-XU7VC6HM.js → session-auth-dead-ID4L35CN.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-USHD2L3F.js.map +0 -1
- /package/dist/{chunk-IQROQ3XJ.js.map → chunk-M5ICLV54.js.map} +0 -0
- /package/dist/{chunk-G23CONQJ.js.map → chunk-PXDYKP5O.js.map} +0 -0
- /package/dist/{claude-pair-runtime-6FJOWTEX.js.map → claude-pair-runtime-OWOZ2ZQ7.js.map} +0 -0
- /package/dist/{persistent-session-6DET4JLF.js.map → persistent-session-GSXFKCVO.js.map} +0 -0
- /package/dist/{responsiveness-probe-ZNKOWUIE.js.map → responsiveness-probe-GOM3ZYW3.js.map} +0 -0
- /package/dist/{session-auth-dead-XU7VC6HM.js.map → session-auth-dead-ID4L35CN.js.map} +0 -0
|
@@ -37311,7 +37311,26 @@ var FLAG_REGISTRY = [
|
|
|
37311
37311
|
// Migration override (ADR-0022): the pre-flags env gate stays the
|
|
37312
37312
|
// highest-precedence operator override so a host already running with
|
|
37313
37313
|
// AGT_RESUME_RECONCILER_ENABLED set keeps that value until the env is retired.
|
|
37314
|
-
envVar: "AGT_RESUME_RECONCILER_ENABLED"
|
|
37314
|
+
envVar: "AGT_RESUME_RECONCILER_ENABLED",
|
|
37315
|
+
// ENG-10036: bisected from the PUBLISHED agt-cli dists, same method as its
|
|
37316
|
+
// sibling `auto-resume-enabled` (ENG-10034). Taken out of that ticket's
|
|
37317
|
+
// grandfather list rather than deferred with the other 20, because the
|
|
37318
|
+
// arming decision for this flag is live this week and a `since` that is
|
|
37319
|
+
// merely RECORDED as missing is still missing at the moment somebody reads
|
|
37320
|
+
// the flip-reach modal.
|
|
37321
|
+
//
|
|
37322
|
+
// AND THIS ONE IS WHY THE PROBE MATTERS. Bisecting on the module symbols
|
|
37323
|
+
// gives the WRONG release, and plausibly so:
|
|
37324
|
+
//
|
|
37325
|
+
// 0.28.19 2026-06-12T05:35:32Z decideResumeReconcile ✓ readResumeReconcilerConfig ✓ AGT_RESUME_RECONCILER_ENABLED ✓ 'resume-reconciler' ✗
|
|
37326
|
+
// 0.28.20 2026-06-12T06:17:28Z decideResumeReconcile ✓ readResumeReconcilerConfig ✓ AGT_RESUME_RECONCILER_ENABLED ✓ 'resume-reconciler' ✓
|
|
37327
|
+
//
|
|
37328
|
+
// ENG-6383 shipped the decision and the env gate; ENG-6395 promoted it to a
|
|
37329
|
+
// registry key 42 minutes later. A host on 0.28.19 honours the ENV VAR and
|
|
37330
|
+
// cannot read the FLAG, so `since: '0.28.19'` would report reach onto hosts
|
|
37331
|
+
// a registry flip cannot touch — the precise defect `since` exists to
|
|
37332
|
+
// prevent. The flag KEY is the only honest discriminator.
|
|
37333
|
+
since: "0.28.20"
|
|
37315
37334
|
},
|
|
37316
37335
|
{
|
|
37317
37336
|
key: "auto-resume-enabled",
|
|
@@ -54,8 +54,8 @@ import {
|
|
|
54
54
|
writeDirectChatSessionState,
|
|
55
55
|
writeEgressAllowlist,
|
|
56
56
|
writePersistentClaudeWrapper
|
|
57
|
-
} from "./chunk-
|
|
58
|
-
import "./chunk-
|
|
57
|
+
} from "./chunk-PXDYKP5O.js";
|
|
58
|
+
import "./chunk-JG3EAFZO.js";
|
|
59
59
|
import "./chunk-XWVM4KPK.js";
|
|
60
60
|
export {
|
|
61
61
|
EGRESS_BASELINE_DOMAINS,
|
|
@@ -114,4 +114,4 @@ export {
|
|
|
114
114
|
writeEgressAllowlist,
|
|
115
115
|
writePersistentClaudeWrapper
|
|
116
116
|
};
|
|
117
|
-
//# sourceMappingURL=persistent-session-
|
|
117
|
+
//# sourceMappingURL=persistent-session-GSXFKCVO.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-PXDYKP5O.js";
|
|
4
|
+
import "./chunk-JG3EAFZO.js";
|
|
5
5
|
import "./chunk-XWVM4KPK.js";
|
|
6
6
|
|
|
7
7
|
// src/lib/responsiveness-probe.ts
|
|
@@ -764,4 +764,4 @@ export {
|
|
|
764
764
|
readAndResetSlackReplyBindingClassifications,
|
|
765
765
|
readAndResetSlackReplyTargetClassifications
|
|
766
766
|
};
|
|
767
|
-
//# sourceMappingURL=responsiveness-probe-
|
|
767
|
+
//# sourceMappingURL=responsiveness-probe-GOM3ZYW3.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
sessionTranscriptDir
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-JG3EAFZO.js";
|
|
4
4
|
|
|
5
5
|
// src/lib/session-auth-dead.ts
|
|
6
6
|
import { closeSync, openSync, readSync, readdirSync, statSync } from "fs";
|
|
@@ -203,4 +203,4 @@ export {
|
|
|
203
203
|
decideSessionAuthState,
|
|
204
204
|
probeSessionAuth
|
|
205
205
|
};
|
|
206
|
-
//# sourceMappingURL=session-auth-dead-
|
|
206
|
+
//# sourceMappingURL=session-auth-dead-ID4L35CN.js.map
|