@integrity-labs/agt-cli 0.26.2-eng5706.0 → 0.26.2
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 +603 -180
- package/dist/bin/agt.js.map +1 -1
- package/dist/{chunk-WERKUMWY.js → chunk-4CESBZPM.js} +21 -7
- package/dist/{chunk-WERKUMWY.js.map → chunk-4CESBZPM.js.map} +1 -1
- package/dist/lib/manager-worker.js +2 -2
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +92 -0
- package/dist/mcp/slack-channel.js +138 -49
- package/dist/mcp/telegram-channel.js +130 -40
- package/package.json +1 -1
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
provisionOrientHook,
|
|
14
14
|
provisionStopHook,
|
|
15
15
|
requireHost
|
|
16
|
-
} from "../chunk-
|
|
16
|
+
} from "../chunk-4CESBZPM.js";
|
|
17
17
|
import {
|
|
18
18
|
getProjectDir as getProjectDir2,
|
|
19
19
|
getReadyTasks,
|
|
@@ -3161,7 +3161,7 @@ var cachedFrameworkVersion = null;
|
|
|
3161
3161
|
var lastVersionCheckAt = 0;
|
|
3162
3162
|
var VERSION_CHECK_INTERVAL_MS = 5 * 60 * 1e3;
|
|
3163
3163
|
var lastResponsivenessProbeAt = 0;
|
|
3164
|
-
var agtCliVersion = true ? "0.26.2
|
|
3164
|
+
var agtCliVersion = true ? "0.26.2" : "dev";
|
|
3165
3165
|
function resolveBrewPath(execFileSync4) {
|
|
3166
3166
|
try {
|
|
3167
3167
|
const out = execFileSync4("which", ["brew"], { timeout: 5e3 }).toString().trim();
|