@integrity-labs/agt-cli 0.28.402 → 0.28.404
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-CVID4T6Q.js → chunk-SW3FOBHR.js} +15 -2
- package/dist/chunk-SW3FOBHR.js.map +1 -0
- package/dist/lib/manager-worker.js +25 -2
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/slack-channel.js +5 -0
- package/dist/mcp/telegram-channel.js +6 -0
- package/package.json +1 -1
- package/dist/chunk-CVID4T6Q.js.map +0 -1
|
@@ -38816,6 +38816,11 @@ var conversationIngestClient = createConversationIngestClient({
|
|
|
38816
38816
|
log: (line) => process.stderr.write(`slack-channel: ${line}
|
|
38817
38817
|
`)
|
|
38818
38818
|
});
|
|
38819
|
+
if (!conversationIngestClient) {
|
|
38820
|
+
process.stderr.write(
|
|
38821
|
+
"slack-channel: conversation ingest DISABLED (missing AGT_HOST / AGT_API_KEY / AGT_AGENT_ID) - 'Last human activity' will not update for this agent\n"
|
|
38822
|
+
);
|
|
38823
|
+
}
|
|
38819
38824
|
var inboundContextClient = createInboundContextClient({
|
|
38820
38825
|
agtHost: AGT_HOST,
|
|
38821
38826
|
agtApiKey: AGT_API_KEY,
|
|
@@ -37693,6 +37693,12 @@ var conversationIngestClient = createConversationIngestClient({
|
|
|
37693
37693
|
log: (line) => process.stderr.write(`telegram-channel(${AGENT_CODE_NAME}): ${line}
|
|
37694
37694
|
`)
|
|
37695
37695
|
});
|
|
37696
|
+
if (!conversationIngestClient) {
|
|
37697
|
+
process.stderr.write(
|
|
37698
|
+
`telegram-channel(${AGENT_CODE_NAME}): conversation ingest DISABLED (missing AGT_HOST / AGT_API_KEY / AGT_AGENT_ID) - 'Last human activity' will not update for this agent
|
|
37699
|
+
`
|
|
37700
|
+
);
|
|
37701
|
+
}
|
|
37696
37702
|
var inboundContextClient = createInboundContextClient({
|
|
37697
37703
|
agtHost: AGT_HOST,
|
|
37698
37704
|
agtApiKey: AGT_API_KEY,
|