@integrity-labs/agt-cli 0.27.94 → 0.27.96
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/{chunk-RDIDG5IF.js → chunk-MBHA6PEN.js} +9 -7
- package/dist/{chunk-RDIDG5IF.js.map → chunk-MBHA6PEN.js.map} +1 -1
- package/dist/{chunk-2ITGJXXM.js → chunk-Y65ABH2V.js} +8 -1
- package/dist/{chunk-2ITGJXXM.js.map → chunk-Y65ABH2V.js.map} +1 -1
- package/dist/{claude-pair-runtime-JVMK3POM.js → claude-pair-runtime-VAMYTRCR.js} +2 -2
- package/dist/lib/manager-worker.js +6 -6
- package/dist/mcp/telegram-channel.js +593 -62
- package/dist/{persistent-session-SPGHFGCF.js → persistent-session-2XLQOMXH.js} +2 -2
- package/dist/{responsiveness-probe-PR7RS6JB.js → responsiveness-probe-ABUPNDR7.js} +2 -2
- package/package.json +1 -1
- /package/dist/{claude-pair-runtime-JVMK3POM.js.map → claude-pair-runtime-VAMYTRCR.js.map} +0 -0
- /package/dist/{persistent-session-SPGHFGCF.js.map → persistent-session-2XLQOMXH.js.map} +0 -0
- /package/dist/{responsiveness-probe-PR7RS6JB.js.map → responsiveness-probe-ABUPNDR7.js.map} +0 -0
|
@@ -5419,6 +5419,13 @@ ${sections}`
|
|
|
5419
5419
|
if (allowedChats && allowedChats.length > 0) {
|
|
5420
5420
|
telegramEnv.TELEGRAM_ALLOWED_CHATS = allowedChats.join(",");
|
|
5421
5421
|
}
|
|
5422
|
+
const rawDiagnosticChatIds = config["diagnostic_chat_ids"];
|
|
5423
|
+
if (Array.isArray(rawDiagnosticChatIds)) {
|
|
5424
|
+
const diagnosticChatIds = rawDiagnosticChatIds.map((v) => typeof v === "string" || typeof v === "number" ? String(v).trim() : "").filter((v) => v.length > 0);
|
|
5425
|
+
if (diagnosticChatIds.length > 0) {
|
|
5426
|
+
telegramEnv.TELEGRAM_DIAGNOSTIC_CHAT_IDS = diagnosticChatIds.join(",");
|
|
5427
|
+
}
|
|
5428
|
+
}
|
|
5422
5429
|
const rawPeerAgentMode = config["peer_agent_mode"];
|
|
5423
5430
|
if (rawPeerAgentMode === "listen" || rawPeerAgentMode === "respond") {
|
|
5424
5431
|
telegramEnv.TELEGRAM_PEER_AGENT_MODE = rawPeerAgentMode;
|
|
@@ -7578,4 +7585,4 @@ export {
|
|
|
7578
7585
|
managerInstallSystemUnitCommand,
|
|
7579
7586
|
managerUninstallSystemUnitCommand
|
|
7580
7587
|
};
|
|
7581
|
-
//# sourceMappingURL=chunk-
|
|
7588
|
+
//# sourceMappingURL=chunk-Y65ABH2V.js.map
|