@integrity-labs/agt-cli 0.28.59 → 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-OEZEWEEG.js → chunk-BCWB6A4G.js} +19 -1
- package/dist/chunk-BCWB6A4G.js.map +1 -0
- package/dist/{chunk-ZNOAT5RQ.js → chunk-DC2QI6OD.js} +14 -22
- package/dist/{chunk-ZNOAT5RQ.js.map → chunk-DC2QI6OD.js.map} +1 -1
- package/dist/{chunk-UA3LEZL4.js → chunk-IGP67S2Z.js} +2 -2
- package/dist/{claude-pair-runtime-VSXYDPST.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 +3 -5
- package/dist/{persistent-session-42V6NGMR.js → persistent-session-3W3TQK73.js} +3 -3
- package/dist/{responsiveness-probe-YSSYWWTG.js → responsiveness-probe-5MXY5KYZ.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-OEZEWEEG.js.map +0 -1
- /package/dist/{chunk-UA3LEZL4.js.map → chunk-IGP67S2Z.js.map} +0 -0
- /package/dist/{claude-pair-runtime-VSXYDPST.js.map → claude-pair-runtime-EVJVZCRI.js.map} +0 -0
- /package/dist/{persistent-session-42V6NGMR.js.map → persistent-session-3W3TQK73.js.map} +0 -0
- /package/dist/{responsiveness-probe-YSSYWWTG.js.map → responsiveness-probe-5MXY5KYZ.js.map} +0 -0
|
@@ -16763,8 +16763,6 @@ async function maybeSendSenderPolicyDecline(args) {
|
|
|
16763
16763
|
clearTimeout(timeoutId);
|
|
16764
16764
|
}
|
|
16765
16765
|
}
|
|
16766
|
-
var BLOCK_KIT_ENABLED = process.env.SLACK_BLOCK_KIT_ENABLED === "true";
|
|
16767
|
-
var BLOCK_KIT_ASK_USER_ENABLED = process.env.SLACK_BLOCK_KIT_ASK_USER_ENABLED === "true";
|
|
16768
16766
|
var BLOCK_KIT_DISABLED = process.env.SLACK_BLOCK_KIT_DISABLED === "true";
|
|
16769
16767
|
var ALLOWED_USERS = parseAllowedUsersCsv(process.env.SLACK_ALLOWED_USERS);
|
|
16770
16768
|
var THREAD_AUTO_FOLLOW = process.env.SLACK_THREAD_AUTO_FOLLOW ?? "off";
|
|
@@ -19155,10 +19153,10 @@ async function handleChannelInfo(args) {
|
|
|
19155
19153
|
};
|
|
19156
19154
|
}
|
|
19157
19155
|
function blockKitToolsAvailable() {
|
|
19158
|
-
return
|
|
19156
|
+
return !BLOCK_KIT_DISABLED;
|
|
19159
19157
|
}
|
|
19160
19158
|
function askUserToolAvailable() {
|
|
19161
|
-
return blockKitToolsAvailable() &&
|
|
19159
|
+
return blockKitToolsAvailable() && Boolean(AGT_HOST && AGT_API_KEY && AGT_AGENT_ID);
|
|
19162
19160
|
}
|
|
19163
19161
|
function interactiveHostAvailable() {
|
|
19164
19162
|
return blockKitToolsAvailable() && Boolean(AGT_HOST && AGT_API_KEY && AGT_AGENT_ID);
|
|
@@ -19203,7 +19201,7 @@ async function getPermalink(channel, ts) {
|
|
|
19203
19201
|
async function handleSendStructured(args) {
|
|
19204
19202
|
if (!blockKitToolsAvailable()) {
|
|
19205
19203
|
return {
|
|
19206
|
-
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." }],
|
|
19207
19205
|
isError: true
|
|
19208
19206
|
};
|
|
19209
19207
|
}
|
|
@@ -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
|