@integrity-labs/agt-cli 0.28.58 → 0.28.60
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-SJRG5VUF.js → chunk-BCWB6A4G.js} +26 -1
- package/dist/chunk-BCWB6A4G.js.map +1 -0
- package/dist/{chunk-ZKHETP7Y.js → chunk-DC2QI6OD.js} +14 -22
- package/dist/{chunk-ZKHETP7Y.js.map → chunk-DC2QI6OD.js.map} +1 -1
- package/dist/{chunk-MKKTPM6J.js → chunk-IGP67S2Z.js} +2 -2
- package/dist/{claude-pair-runtime-RAAIXOKO.js → claude-pair-runtime-EVJVZCRI.js} +2 -2
- package/dist/lib/manager-worker.js +9 -12
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/slack-channel.js +8 -7
- package/dist/mcp/telegram-channel.js +5 -2
- package/dist/{persistent-session-INTCKEG6.js → persistent-session-3W3TQK73.js} +3 -3
- package/dist/{responsiveness-probe-XAYQAVLV.js → responsiveness-probe-5MXY5KYZ.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-SJRG5VUF.js.map +0 -1
- /package/dist/{chunk-MKKTPM6J.js.map → chunk-IGP67S2Z.js.map} +0 -0
- /package/dist/{claude-pair-runtime-RAAIXOKO.js.map → claude-pair-runtime-EVJVZCRI.js.map} +0 -0
- /package/dist/{persistent-session-INTCKEG6.js.map → persistent-session-3W3TQK73.js.map} +0 -0
- /package/dist/{responsiveness-probe-XAYQAVLV.js.map → responsiveness-probe-5MXY5KYZ.js.map} +0 -0
|
@@ -14637,8 +14637,11 @@ function orphanSweepIntervalMs() {
|
|
|
14637
14637
|
}
|
|
14638
14638
|
var MAX_MARKER_REPLAYS = 3;
|
|
14639
14639
|
function channelReplayEnabled() {
|
|
14640
|
-
|
|
14641
|
-
|
|
14640
|
+
return resolveHostBooleanFlag({
|
|
14641
|
+
key: "channel-replay",
|
|
14642
|
+
envVar: "AGT_CHANNEL_REPLAY_ENABLED",
|
|
14643
|
+
defaultValue: false
|
|
14644
|
+
});
|
|
14642
14645
|
}
|
|
14643
14646
|
function shouldReplayMarker(i) {
|
|
14644
14647
|
if (!i.enabled) return false;
|
|
@@ -16760,8 +16763,6 @@ async function maybeSendSenderPolicyDecline(args) {
|
|
|
16760
16763
|
clearTimeout(timeoutId);
|
|
16761
16764
|
}
|
|
16762
16765
|
}
|
|
16763
|
-
var BLOCK_KIT_ENABLED = process.env.SLACK_BLOCK_KIT_ENABLED === "true";
|
|
16764
|
-
var BLOCK_KIT_ASK_USER_ENABLED = process.env.SLACK_BLOCK_KIT_ASK_USER_ENABLED === "true";
|
|
16765
16766
|
var BLOCK_KIT_DISABLED = process.env.SLACK_BLOCK_KIT_DISABLED === "true";
|
|
16766
16767
|
var ALLOWED_USERS = parseAllowedUsersCsv(process.env.SLACK_ALLOWED_USERS);
|
|
16767
16768
|
var THREAD_AUTO_FOLLOW = process.env.SLACK_THREAD_AUTO_FOLLOW ?? "off";
|
|
@@ -19152,10 +19153,10 @@ async function handleChannelInfo(args) {
|
|
|
19152
19153
|
};
|
|
19153
19154
|
}
|
|
19154
19155
|
function blockKitToolsAvailable() {
|
|
19155
|
-
return
|
|
19156
|
+
return !BLOCK_KIT_DISABLED;
|
|
19156
19157
|
}
|
|
19157
19158
|
function askUserToolAvailable() {
|
|
19158
|
-
return blockKitToolsAvailable() &&
|
|
19159
|
+
return blockKitToolsAvailable() && Boolean(AGT_HOST && AGT_API_KEY && AGT_AGENT_ID);
|
|
19159
19160
|
}
|
|
19160
19161
|
function interactiveHostAvailable() {
|
|
19161
19162
|
return blockKitToolsAvailable() && Boolean(AGT_HOST && AGT_API_KEY && AGT_AGENT_ID);
|
|
@@ -19200,7 +19201,7 @@ async function getPermalink(channel, ts) {
|
|
|
19200
19201
|
async function handleSendStructured(args) {
|
|
19201
19202
|
if (!blockKitToolsAvailable()) {
|
|
19202
19203
|
return {
|
|
19203
|
-
content: [{ type: "text", text: "slack.send_structured is disabled by
|
|
19204
|
+
content: [{ type: "text", text: "slack.send_structured is disabled by the SLACK_BLOCK_KIT_DISABLED fleet kill switch." }],
|
|
19204
19205
|
isError: true
|
|
19205
19206
|
};
|
|
19206
19207
|
}
|
|
@@ -16438,8 +16438,11 @@ function orphanSweepIntervalMs() {
|
|
|
16438
16438
|
}
|
|
16439
16439
|
var MAX_MARKER_REPLAYS = 3;
|
|
16440
16440
|
function channelReplayEnabled() {
|
|
16441
|
-
|
|
16442
|
-
|
|
16441
|
+
return resolveHostBooleanFlag({
|
|
16442
|
+
key: "channel-replay",
|
|
16443
|
+
envVar: "AGT_CHANNEL_REPLAY_ENABLED",
|
|
16444
|
+
defaultValue: false
|
|
16445
|
+
});
|
|
16443
16446
|
}
|
|
16444
16447
|
function shouldReplayMarker(i) {
|
|
16445
16448
|
if (!i.enabled) return false;
|
|
@@ -25,8 +25,8 @@ import {
|
|
|
25
25
|
takeZombieDetection,
|
|
26
26
|
writeDirectChatSessionState,
|
|
27
27
|
writePersistentClaudeWrapper
|
|
28
|
-
} from "./chunk-
|
|
29
|
-
import "./chunk-
|
|
28
|
+
} from "./chunk-IGP67S2Z.js";
|
|
29
|
+
import "./chunk-BCWB6A4G.js";
|
|
30
30
|
import "./chunk-XWVM4KPK.js";
|
|
31
31
|
export {
|
|
32
32
|
SEND_KEYS_ENTER_DELAY_MS,
|
|
@@ -56,4 +56,4 @@ export {
|
|
|
56
56
|
writeDirectChatSessionState,
|
|
57
57
|
writePersistentClaudeWrapper
|
|
58
58
|
};
|
|
59
|
-
//# sourceMappingURL=persistent-session-
|
|
59
|
+
//# sourceMappingURL=persistent-session-3W3TQK73.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-IGP67S2Z.js";
|
|
4
|
+
import "./chunk-BCWB6A4G.js";
|
|
5
5
|
import "./chunk-XWVM4KPK.js";
|
|
6
6
|
|
|
7
7
|
// src/lib/responsiveness-probe.ts
|
|
@@ -250,4 +250,4 @@ export {
|
|
|
250
250
|
parkPendingInbound,
|
|
251
251
|
readAndResetChannelDeflections
|
|
252
252
|
};
|
|
253
|
-
//# sourceMappingURL=responsiveness-probe-
|
|
253
|
+
//# sourceMappingURL=responsiveness-probe-5MXY5KYZ.js.map
|