@integrity-labs/agt-cli 0.12.9 → 0.13.0
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-ZFTZDO5E.js → chunk-WNYQKTBP.js} +1 -1
- package/dist/chunk-WNYQKTBP.js.map +1 -0
- package/dist/lib/manager-worker.js +276 -32
- package/dist/lib/manager-worker.js.map +1 -1
- package/mcp/direct-chat-channel.js +1 -0
- package/mcp/slack-channel.js +1 -0
- package/mcp/telegram-channel.js +1 -0
- package/package.json +1 -1
- package/dist/chunk-ZFTZDO5E.js.map +0 -1
|
@@ -13995,3 +13995,4 @@ process.stdin.on("close", () => shutdown("stdin closed"));
|
|
|
13995
13995
|
process.stdin.on("end", () => shutdown("stdin ended"));
|
|
13996
13996
|
process.on("SIGTERM", () => shutdown("SIGTERM"));
|
|
13997
13997
|
process.on("SIGINT", () => shutdown("SIGINT"));
|
|
13998
|
+
process.on("SIGHUP", () => shutdown("SIGHUP"));
|
package/mcp/slack-channel.js
CHANGED
|
@@ -14411,6 +14411,7 @@ process.stdin.on("close", () => shutdown("stdin closed"));
|
|
|
14411
14411
|
process.stdin.on("end", () => shutdown("stdin ended"));
|
|
14412
14412
|
process.on("SIGTERM", () => shutdown("SIGTERM"));
|
|
14413
14413
|
process.on("SIGINT", () => shutdown("SIGINT"));
|
|
14414
|
+
process.on("SIGHUP", () => shutdown("SIGHUP"));
|
|
14414
14415
|
botUserId = await getBotUserId();
|
|
14415
14416
|
process.stderr.write(`slack-channel: Bot user ID: ${botUserId}
|
|
14416
14417
|
`);
|
package/mcp/telegram-channel.js
CHANGED
|
@@ -14205,6 +14205,7 @@ process.stdin.on("close", () => shutdown("stdin closed"));
|
|
|
14205
14205
|
process.stdin.on("end", () => shutdown("stdin ended"));
|
|
14206
14206
|
process.on("SIGTERM", () => shutdown("SIGTERM"));
|
|
14207
14207
|
process.on("SIGINT", () => shutdown("SIGINT"));
|
|
14208
|
+
process.on("SIGHUP", () => shutdown("SIGHUP"));
|
|
14208
14209
|
process.stderr.write(
|
|
14209
14210
|
`telegram-channel(${AGENT_CODE_NAME}): started, long-polling getUpdates
|
|
14210
14211
|
`
|