@integrity-labs/agt-cli 0.28.314 → 0.28.316

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.
@@ -14826,11 +14826,14 @@ function decideAckReaction(i) {
14826
14826
  function normalizeReactionName(emoji2) {
14827
14827
  return emoji2.trim().replace(/^:+|:+$/g, "").toLowerCase();
14828
14828
  }
14829
- function skipReactionShouldRetractAck(emoji2, skipReaction, ackReaction) {
14829
+ function isConfiguredSkipReaction(emoji2, skipReaction) {
14830
14830
  const skip = normalizeReactionName(skipReaction);
14831
14831
  if (!skip) return false;
14832
- if (normalizeReactionName(emoji2) !== skip) return false;
14833
- return normalizeReactionName(ackReaction) !== skip;
14832
+ return normalizeReactionName(emoji2) === skip;
14833
+ }
14834
+ function skipReactionShouldRetractAck(emoji2, skipReaction, ackReaction) {
14835
+ if (!isConfiguredSkipReaction(emoji2, skipReaction)) return false;
14836
+ return normalizeReactionName(ackReaction) !== normalizeReactionName(skipReaction);
14834
14837
  }
14835
14838
  function classifyUndeliverableCause(i) {
14836
14839
  if (!i.hasTarget) return null;
@@ -21175,7 +21178,12 @@ mcp.setRequestHandler(CallToolRequestSchema, async (req) => {
21175
21178
  isError: true
21176
21179
  };
21177
21180
  }
21178
- noteThreadActivityByMessageTs(channel, timestamp);
21181
+ if (isConfiguredSkipReaction(emoji2, SLACK_SKIP_REACTION)) {
21182
+ clearAllSlackPendingMarkersForThread2(channel, timestamp);
21183
+ clearSlackPendingMarkerByMessageTs2(channel, timestamp);
21184
+ } else {
21185
+ noteThreadActivityByMessageTs(channel, timestamp);
21186
+ }
21179
21187
  if (skipReactionShouldRetractAck(emoji2, SLACK_SKIP_REACTION, SLACK_ACK_REACTION)) {
21180
21188
  fetch("https://slack.com/api/reactions.remove", {
21181
21189
  method: "POST",
@@ -36,7 +36,7 @@ import {
36
36
  writeDirectChatSessionState,
37
37
  writeEgressAllowlist,
38
38
  writePersistentClaudeWrapper
39
- } from "./chunk-KJE5Y4GF.js";
39
+ } from "./chunk-ORTMG5E3.js";
40
40
  import "./chunk-XWVM4KPK.js";
41
41
  export {
42
42
  EGRESS_BASELINE_DOMAINS,
@@ -77,4 +77,4 @@ export {
77
77
  writeEgressAllowlist,
78
78
  writePersistentClaudeWrapper
79
79
  };
80
- //# sourceMappingURL=persistent-session-3XOQWQJE.js.map
80
+ //# sourceMappingURL=persistent-session-UZNQVUYB.js.map
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  paneLogPath
3
- } from "./chunk-KJE5Y4GF.js";
3
+ } from "./chunk-ORTMG5E3.js";
4
4
  import "./chunk-XWVM4KPK.js";
5
5
 
6
6
  // src/lib/responsiveness-probe.ts
@@ -427,4 +427,4 @@ export {
427
427
  readAndResetSlackReplyBindingClassifications,
428
428
  readAndResetSlackReplyTargetClassifications
429
429
  };
430
- //# sourceMappingURL=responsiveness-probe-DUGIDPLT.js.map
430
+ //# sourceMappingURL=responsiveness-probe-5XF7ZCYF.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integrity-labs/agt-cli",
3
- "version": "0.28.314",
3
+ "version": "0.28.316",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {