@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.
- package/dist/bin/agt.js +3 -3
- package/dist/bin/agt.js.map +1 -1
- package/dist/{chunk-55SJYI7V.js → chunk-5JHBDBDU.js} +5 -1
- package/dist/{chunk-55SJYI7V.js.map → chunk-5JHBDBDU.js.map} +1 -1
- package/dist/{chunk-V7PNYKIT.js → chunk-Y3E5EFCM.js} +8164 -8151
- package/dist/chunk-Y3E5EFCM.js.map +1 -0
- package/dist/{claude-pair-runtime-WA4BYPN5.js → claude-pair-runtime-3WZQHRIQ.js} +2 -2
- package/dist/lib/manager-worker.js +5 -5
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/{persistent-session-BVR3HES5.js → persistent-session-3RLZWXFR.js} +2 -2
- package/mcp/slack-channel.js +2 -2
- package/mcp/telegram-channel.js +2 -2
- package/package.json +1 -1
- package/dist/chunk-V7PNYKIT.js.map +0 -1
- /package/dist/{claude-pair-runtime-WA4BYPN5.js.map → claude-pair-runtime-3WZQHRIQ.js.map} +0 -0
- /package/dist/{persistent-session-BVR3HES5.js.map → persistent-session-3RLZWXFR.js.map} +0 -0
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
stopAllSessionsAndWait,
|
|
15
15
|
stopPersistentSession,
|
|
16
16
|
writePersistentClaudeWrapper
|
|
17
|
-
} from "./chunk-
|
|
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-
|
|
35
|
+
//# sourceMappingURL=persistent-session-3RLZWXFR.js.map
|
package/mcp/slack-channel.js
CHANGED
|
@@ -15216,7 +15216,7 @@ async function processSlackRecoveryOutboxFile(filename) {
|
|
|
15216
15216
|
`
|
|
15217
15217
|
);
|
|
15218
15218
|
if (payload.thread_ts) {
|
|
15219
|
-
|
|
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() {
|
package/mcp/telegram-channel.js
CHANGED
|
@@ -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)
|
|
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() {
|