@integrity-labs/agt-cli 0.27.96 → 0.27.98
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-MBHA6PEN.js → chunk-3TAVWBOA.js} +8 -1
- package/dist/{chunk-MBHA6PEN.js.map → chunk-3TAVWBOA.js.map} +1 -1
- package/dist/{chunk-Y65ABH2V.js → chunk-S265L5AN.js} +1 -1
- package/dist/{claude-pair-runtime-VAMYTRCR.js → claude-pair-runtime-M2WYVEV2.js} +2 -2
- package/dist/lib/manager-worker.js +20 -7
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/slack-channel.js +102 -0
- package/dist/mcp/telegram-channel.js +139 -0
- package/dist/{persistent-session-2XLQOMXH.js → persistent-session-HAPAZHOA.js} +2 -2
- package/dist/{responsiveness-probe-ABUPNDR7.js → responsiveness-probe-ZFYY5XOU.js} +2 -2
- package/package.json +1 -1
- /package/dist/{chunk-Y65ABH2V.js.map → chunk-S265L5AN.js.map} +0 -0
- /package/dist/{claude-pair-runtime-VAMYTRCR.js.map → claude-pair-runtime-M2WYVEV2.js.map} +0 -0
- /package/dist/{persistent-session-2XLQOMXH.js.map → persistent-session-HAPAZHOA.js.map} +0 -0
- /package/dist/{responsiveness-probe-ABUPNDR7.js.map → responsiveness-probe-ZFYY5XOU.js.map} +0 -0
package/dist/bin/agt.js
CHANGED
|
@@ -28,7 +28,7 @@ import {
|
|
|
28
28
|
success,
|
|
29
29
|
table,
|
|
30
30
|
warn
|
|
31
|
-
} from "../chunk-
|
|
31
|
+
} from "../chunk-S265L5AN.js";
|
|
32
32
|
import {
|
|
33
33
|
CHANNEL_REGISTRY,
|
|
34
34
|
DEPLOYMENT_TEMPLATES,
|
|
@@ -4934,7 +4934,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
4934
4934
|
import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
|
|
4935
4935
|
import chalk18 from "chalk";
|
|
4936
4936
|
import ora16 from "ora";
|
|
4937
|
-
var cliVersion = true ? "0.27.
|
|
4937
|
+
var cliVersion = true ? "0.27.98" : "dev";
|
|
4938
4938
|
async function fetchLatestVersion() {
|
|
4939
4939
|
const host2 = getHost();
|
|
4940
4940
|
if (!host2) return null;
|
|
@@ -5857,7 +5857,7 @@ function handleError(err) {
|
|
|
5857
5857
|
}
|
|
5858
5858
|
|
|
5859
5859
|
// src/bin/agt.ts
|
|
5860
|
-
var cliVersion2 = true ? "0.27.
|
|
5860
|
+
var cliVersion2 = true ? "0.27.98" : "dev";
|
|
5861
5861
|
var program = new Command();
|
|
5862
5862
|
program.name("agt").description("Augmented CLI \u2014 agent provisioning and management").version(cliVersion2).option("--json", "Emit machine-readable JSON output (suppress spinners and colors)").option("--skip-update-check", "Skip the automatic update check on startup");
|
|
5863
5863
|
program.hook("preAction", async (thisCommand, actionCommand) => {
|
|
@@ -526,6 +526,13 @@ function checkOne(codeName, io, config, states) {
|
|
|
526
526
|
`[channel-input-watchdog] '${codeName}': GIVING UP after ${maxFires} Enter attempts \u2014 input remains unsubmitted (input_hash=${hash}, len=${text.length})`
|
|
527
527
|
);
|
|
528
528
|
giveUpCounts.set(codeName, (giveUpCounts.get(codeName) ?? 0) + 1);
|
|
529
|
+
try {
|
|
530
|
+
io.signalGiveUp?.(codeName);
|
|
531
|
+
} catch (err) {
|
|
532
|
+
io.log(
|
|
533
|
+
`[channel-input-watchdog] '${codeName}': give-up signal write failed: ${err.message}`
|
|
534
|
+
);
|
|
535
|
+
}
|
|
529
536
|
return;
|
|
530
537
|
}
|
|
531
538
|
if (fire) {
|
|
@@ -1550,4 +1557,4 @@ export {
|
|
|
1550
1557
|
stopAllSessionsAndWait,
|
|
1551
1558
|
getProjectDir
|
|
1552
1559
|
};
|
|
1553
|
-
//# sourceMappingURL=chunk-
|
|
1560
|
+
//# sourceMappingURL=chunk-3TAVWBOA.js.map
|