@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.
@@ -14637,8 +14637,11 @@ function orphanSweepIntervalMs() {
14637
14637
  }
14638
14638
  var MAX_MARKER_REPLAYS = 3;
14639
14639
  function channelReplayEnabled() {
14640
- const v = process.env.AGT_CHANNEL_REPLAY_ENABLED;
14641
- return v === "1" || v === "true";
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 BLOCK_KIT_ENABLED && !BLOCK_KIT_DISABLED;
19156
+ return !BLOCK_KIT_DISABLED;
19156
19157
  }
19157
19158
  function askUserToolAvailable() {
19158
- return blockKitToolsAvailable() && BLOCK_KIT_ASK_USER_ENABLED && Boolean(AGT_HOST && AGT_API_KEY && AGT_AGENT_ID);
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 team configuration." }],
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
- const v = process.env.AGT_CHANNEL_REPLAY_ENABLED;
16442
- return v === "1" || v === "true";
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-MKKTPM6J.js";
29
- import "./chunk-SJRG5VUF.js";
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-INTCKEG6.js.map
59
+ //# sourceMappingURL=persistent-session-3W3TQK73.js.map
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  paneLogPath
3
- } from "./chunk-MKKTPM6J.js";
4
- import "./chunk-SJRG5VUF.js";
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-XAYQAVLV.js.map
253
+ //# sourceMappingURL=responsiveness-probe-5MXY5KYZ.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integrity-labs/agt-cli",
3
- "version": "0.28.58",
3
+ "version": "0.28.60",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {