@integrity-labs/agt-cli 0.19.26 → 0.20.1

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.
@@ -14,7 +14,7 @@ import {
14
14
  stopAllSessionsAndWait,
15
15
  stopPersistentSession,
16
16
  writePersistentClaudeWrapper
17
- } from "./chunk-55SJYI7V.js";
17
+ } from "./chunk-5JHBDBDU.js";
18
18
  export {
19
19
  _internals,
20
20
  collectDiagnostics,
@@ -32,4 +32,4 @@ export {
32
32
  stopPersistentSession,
33
33
  writePersistentClaudeWrapper
34
34
  };
35
- //# sourceMappingURL=persistent-session-BVR3HES5.js.map
35
+ //# sourceMappingURL=persistent-session-3RLZWXFR.js.map
@@ -15216,7 +15216,7 @@ async function processSlackRecoveryOutboxFile(filename) {
15216
15216
  `
15217
15217
  );
15218
15218
  if (payload.thread_ts) {
15219
- clearAllSlackPendingMarkersForThread(payload.channel, payload.thread_ts);
15219
+ clearPendingMessage(payload.channel, payload.thread_ts);
15220
15220
  }
15221
15221
  } else {
15222
15222
  process.stderr.write(
@@ -15366,8 +15366,8 @@ function armSlackPendingTimer(channel, threadTs, messageTs, durationMs) {
15366
15366
  pendingMessages.set(key2, timer);
15367
15367
  }
15368
15368
  function trackPendingMessage(channel, threadTs, messageTs) {
15369
- armSlackPendingTimer(channel, threadTs, messageTs, RESPONSE_TIMEOUT_MS);
15370
15369
  writeSlackPendingInboundMarker(channel, threadTs, messageTs);
15370
+ armSlackPendingTimer(channel, threadTs, messageTs, RESPONSE_TIMEOUT_MS);
15371
15371
  }
15372
15372
  var STALE_MARKER_MS = 24 * 60 * 60 * 1e3;
15373
15373
  function rearmSlackPendingTimersFromDisk() {
@@ -15247,7 +15247,7 @@ async function processRecoveryOutboxFile(filename) {
15247
15247
  `telegram-channel(${AGENT_CODE_NAME}): ghost-reply recovery sent (chat=${redactId(payload.chat_id)} msg=${redactId(payload.message_id ?? "")})
15248
15248
  `
15249
15249
  );
15250
- if (payload.message_id) clearPendingInboundMarker(payload.chat_id, payload.message_id);
15250
+ if (payload.message_id) clearPendingMessage(payload.chat_id, payload.message_id);
15251
15251
  } else {
15252
15252
  process.stderr.write(
15253
15253
  `telegram-channel(${AGENT_CODE_NAME}): ghost-reply recovery failed (chat=${redactId(payload.chat_id)}): ${resp.description ?? "unknown"}
@@ -15397,8 +15397,8 @@ function armTelegramPendingTimer(chatId, messageId, chatType, durationMs) {
15397
15397
  pendingMessages.set(key2, { timer, chatType });
15398
15398
  }
15399
15399
  function trackPendingMessage(chatId, messageId, chatType) {
15400
- armTelegramPendingTimer(chatId, messageId, chatType, RESPONSE_TIMEOUT_MS);
15401
15400
  writePendingInboundMarker(chatId, messageId, chatType);
15401
+ armTelegramPendingTimer(chatId, messageId, chatType, RESPONSE_TIMEOUT_MS);
15402
15402
  }
15403
15403
  var STALE_MARKER_MS = 24 * 60 * 60 * 1e3;
15404
15404
  function rearmPendingTimersFromDisk() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integrity-labs/agt-cli",
3
- "version": "0.19.26",
3
+ "version": "0.20.1",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {