@integrity-labs/agt-cli 0.28.161 → 0.28.162
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 +4 -4
- package/dist/{chunk-TNTG4DNQ.js → chunk-G6NDQYBC.js} +19 -3
- package/dist/{chunk-TNTG4DNQ.js.map → chunk-G6NDQYBC.js.map} +1 -1
- package/dist/{chunk-2D5COEAS.js → chunk-MNW2HVGO.js} +2 -2
- package/dist/{chunk-CQZDKD2U.js → chunk-U6HS4U7L.js} +13 -1
- package/dist/chunk-U6HS4U7L.js.map +1 -0
- package/dist/{claude-pair-runtime-VHRJFJDJ.js → claude-pair-runtime-PJ4OZ3DE.js} +2 -2
- package/dist/lib/manager-worker.js +8 -8
- package/dist/mcp/slack-channel.js +70 -1
- package/dist/mcp/telegram-channel.js +63 -1
- package/dist/{persistent-session-3AC6FSX6.js → persistent-session-T7Q53HW5.js} +3 -3
- package/dist/{responsiveness-probe-ZXB5REIY.js → responsiveness-probe-K4Y7BXRH.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-CQZDKD2U.js.map +0 -1
- /package/dist/{chunk-2D5COEAS.js.map → chunk-MNW2HVGO.js.map} +0 -0
- /package/dist/{claude-pair-runtime-VHRJFJDJ.js.map → claude-pair-runtime-PJ4OZ3DE.js.map} +0 -0
- /package/dist/{persistent-session-3AC6FSX6.js.map → persistent-session-T7Q53HW5.js.map} +0 -0
- /package/dist/{responsiveness-probe-ZXB5REIY.js.map → responsiveness-probe-K4Y7BXRH.js.map} +0 -0
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
formatMissingVar,
|
|
4
4
|
isClaudeFastMode,
|
|
5
5
|
probeMcpEnvSubstitution
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-U6HS4U7L.js";
|
|
7
7
|
import {
|
|
8
8
|
reapOrphanChannelMcps
|
|
9
9
|
} from "./chunk-XWVM4KPK.js";
|
|
@@ -1588,4 +1588,4 @@ export {
|
|
|
1588
1588
|
stopAllSessionsAndWait,
|
|
1589
1589
|
getProjectDir
|
|
1590
1590
|
};
|
|
1591
|
-
//# sourceMappingURL=chunk-
|
|
1591
|
+
//# sourceMappingURL=chunk-MNW2HVGO.js.map
|
|
@@ -573,6 +573,18 @@ function generateSlackAppManifest(input) {
|
|
|
573
573
|
description: "This agent's model, session origin, uptime + connectivity.",
|
|
574
574
|
should_escape: false
|
|
575
575
|
},
|
|
576
|
+
// ENG-6931: /ping-<code> - a connectivity check. The agent posts a
|
|
577
|
+
// visible pong via the normal chat.postMessage reply path, proving
|
|
578
|
+
// the channel can actually deliver. Routed by the slash_commands
|
|
579
|
+
// envelope handler in packages/mcp/src/slack-channel.ts; gated on the
|
|
580
|
+
// ping allowlist (team members + reports-to manager) materialized as
|
|
581
|
+
// SLACK_PING_ALLOWED_USERS.
|
|
582
|
+
{
|
|
583
|
+
command: agentSlashCommand("/ping", agent_code_name),
|
|
584
|
+
url: slash_command_url,
|
|
585
|
+
description: "Ping this agent to confirm its channel is connected (team + manager only).",
|
|
586
|
+
should_escape: false
|
|
587
|
+
},
|
|
576
588
|
// ENG-6233: per-agent /help-<code>. Bare `/help` is Slack-reserved,
|
|
577
589
|
// so register ONLY when a valid code name actually suffixes it
|
|
578
590
|
// (agentSlashCommand returns the bare base when it can't suffix —
|
|
@@ -6484,4 +6496,4 @@ export {
|
|
|
6484
6496
|
parseEnvIntegrations,
|
|
6485
6497
|
probeMcpEnvSubstitution
|
|
6486
6498
|
};
|
|
6487
|
-
//# sourceMappingURL=chunk-
|
|
6499
|
+
//# sourceMappingURL=chunk-U6HS4U7L.js.map
|