@integrity-labs/agt-cli 0.28.315 → 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.
- package/dist/bin/agt.js +4 -4
- package/dist/{chunk-PNE62JL3.js → chunk-J6H7R3Y4.js} +85 -6
- package/dist/{chunk-PNE62JL3.js.map → chunk-J6H7R3Y4.js.map} +1 -1
- package/dist/{chunk-H6GG7WM3.js → chunk-ORTMG5E3.js} +1 -1
- package/dist/{chunk-H6GG7WM3.js.map → chunk-ORTMG5E3.js.map} +1 -1
- package/dist/{claude-pair-runtime-V7DKCABP.js → claude-pair-runtime-4PLFHGOI.js} +2 -2
- package/dist/lib/manager-worker.js +19 -15
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/slack-channel.js +12 -4
- package/dist/{persistent-session-OYVPR4R3.js → persistent-session-UZNQVUYB.js} +2 -2
- package/dist/{responsiveness-probe-DFQFCUN2.js → responsiveness-probe-5XF7ZCYF.js} +2 -2
- package/package.json +1 -1
- /package/dist/{claude-pair-runtime-V7DKCABP.js.map → claude-pair-runtime-4PLFHGOI.js.map} +0 -0
- /package/dist/{persistent-session-OYVPR4R3.js.map → persistent-session-UZNQVUYB.js.map} +0 -0
- /package/dist/{responsiveness-probe-DFQFCUN2.js.map → responsiveness-probe-5XF7ZCYF.js.map} +0 -0
|
@@ -14826,11 +14826,14 @@ function decideAckReaction(i) {
|
|
|
14826
14826
|
function normalizeReactionName(emoji2) {
|
|
14827
14827
|
return emoji2.trim().replace(/^:+|:+$/g, "").toLowerCase();
|
|
14828
14828
|
}
|
|
14829
|
-
function
|
|
14829
|
+
function isConfiguredSkipReaction(emoji2, skipReaction) {
|
|
14830
14830
|
const skip = normalizeReactionName(skipReaction);
|
|
14831
14831
|
if (!skip) return false;
|
|
14832
|
-
|
|
14833
|
-
|
|
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
|
-
|
|
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-
|
|
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-
|
|
80
|
+
//# sourceMappingURL=persistent-session-UZNQVUYB.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
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-
|
|
430
|
+
//# sourceMappingURL=responsiveness-probe-5XF7ZCYF.js.map
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|