@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.
@@ -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,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integrity-labs/agt-cli",
3
- "version": "0.28.402",
3
+ "version": "0.28.404",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {