@integrity-labs/agt-cli 0.27.144 → 0.27.145
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-HPUIWWKD.js → chunk-4UKWARE3.js} +9 -11
- package/dist/{chunk-HPUIWWKD.js.map → chunk-4UKWARE3.js.map} +1 -1
- package/dist/lib/manager-worker.js +9 -3
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/augmented-admin.js +21335 -0
- package/dist/mcp/slack-channel.js +151 -110
- package/dist/mcp/teams-channel.js +73 -29
- package/dist/mcp/telegram-channel.js +163 -80
- package/package.json +3 -2
|
@@ -18,7 +18,7 @@ import {
|
|
|
18
18
|
provisionStopHook,
|
|
19
19
|
requireHost,
|
|
20
20
|
safeWriteJsonAtomic
|
|
21
|
-
} from "../chunk-
|
|
21
|
+
} from "../chunk-4UKWARE3.js";
|
|
22
22
|
import {
|
|
23
23
|
getProjectDir as getProjectDir2,
|
|
24
24
|
getReadyTasks,
|
|
@@ -4760,7 +4760,7 @@ var cachedMaintenanceWindow = null;
|
|
|
4760
4760
|
var lastVersionCheckAt = 0;
|
|
4761
4761
|
var VERSION_CHECK_INTERVAL_MS = 5 * 60 * 1e3;
|
|
4762
4762
|
var lastResponsivenessProbeAt = 0;
|
|
4763
|
-
var agtCliVersion = true ? "0.27.
|
|
4763
|
+
var agtCliVersion = true ? "0.27.145" : "dev";
|
|
4764
4764
|
function resolveBrewPath(execFileSync4) {
|
|
4765
4765
|
try {
|
|
4766
4766
|
const out = execFileSync4("which", ["brew"], { timeout: 5e3 }).toString().trim();
|
|
@@ -11423,8 +11423,14 @@ function deployMcpAssets() {
|
|
|
11423
11423
|
"slack-channel.js",
|
|
11424
11424
|
"direct-chat-channel.js",
|
|
11425
11425
|
"telegram-channel.js",
|
|
11426
|
-
"teams-channel.js"
|
|
11426
|
+
"teams-channel.js",
|
|
11427
11427
|
// ENG-6019
|
|
11428
|
+
// ENG-6195: the staff-only admin-debug broker, bundled with the CLI (never
|
|
11429
|
+
// published to npm). NOT in RESTARTABLE_CHANNEL_FILES — it's not a channel,
|
|
11430
|
+
// so it doesn't drive the channel-restart path; the mcp-presence-reaper
|
|
11431
|
+
// (re)starts it with the session, and a bundle update applies on the next
|
|
11432
|
+
// natural session restart.
|
|
11433
|
+
"augmented-admin.js"
|
|
11428
11434
|
]) {
|
|
11429
11435
|
const src = join8(mcpSourceDir, file);
|
|
11430
11436
|
const dst = join8(targetDir, file);
|