@integrity-labs/agt-cli 0.27.135 → 0.27.137
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-KZGU4X3A.js → chunk-TDMOEMDM.js} +2 -2
- package/dist/chunk-TDMOEMDM.js.map +1 -0
- package/dist/{chunk-HC7B2OVZ.js → chunk-UIRCFCED.js} +8 -2
- package/dist/{chunk-HC7B2OVZ.js.map → chunk-UIRCFCED.js.map} +1 -1
- package/dist/{chunk-XKX2HEQY.js → chunk-YJOFVGD2.js} +17 -2
- package/dist/{chunk-XKX2HEQY.js.map → chunk-YJOFVGD2.js.map} +1 -1
- package/dist/{claude-pair-runtime-I7SKUE2Q.js → claude-pair-runtime-ZOHU673W.js} +2 -2
- package/dist/lib/manager-worker.js +47 -18
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/index.js +67 -1
- package/dist/{persistent-session-56AY3LH6.js → persistent-session-NSN62HZN.js} +3 -3
- package/dist/{responsiveness-probe-L6B7WINR.js → responsiveness-probe-RF5ZCTE7.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-KZGU4X3A.js.map +0 -1
- /package/dist/{claude-pair-runtime-I7SKUE2Q.js.map → claude-pair-runtime-ZOHU673W.js.map} +0 -0
- /package/dist/{persistent-session-56AY3LH6.js.map → persistent-session-NSN62HZN.js.map} +0 -0
- /package/dist/{responsiveness-probe-L6B7WINR.js.map → responsiveness-probe-RF5ZCTE7.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-UIRCFCED.js";
|
|
32
32
|
import {
|
|
33
33
|
CHANNEL_REGISTRY,
|
|
34
34
|
DEPLOYMENT_TEMPLATES,
|
|
@@ -54,7 +54,7 @@ import {
|
|
|
54
54
|
renderTemplate,
|
|
55
55
|
resolveChannels,
|
|
56
56
|
serializeManifestForSlackCli
|
|
57
|
-
} from "../chunk-
|
|
57
|
+
} from "../chunk-TDMOEMDM.js";
|
|
58
58
|
|
|
59
59
|
// src/bin/agt.ts
|
|
60
60
|
import { join as join20 } from "path";
|
|
@@ -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.137" : "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.137" : "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) => {
|
|
@@ -1590,7 +1590,7 @@ async function probeComposioMcpToolCall(config, fetchImpl = fetch) {
|
|
|
1590
1590
|
const resContent = callRpc?.["result"]?.content;
|
|
1591
1591
|
const raw = errText ?? (resContent ?? []).map((c) => c.text ?? "").join(" ").trim();
|
|
1592
1592
|
if (raw)
|
|
1593
|
-
baseDetails.response = raw.length >
|
|
1593
|
+
baseDetails.response = raw.length > 2e3 ? `${raw.slice(0, 2e3)}\u2026` : raw;
|
|
1594
1594
|
}
|
|
1595
1595
|
if (callRpc && "error" in callRpc) {
|
|
1596
1596
|
const errMsg = callRpc["error"]?.message ?? "";
|
|
@@ -4727,4 +4727,4 @@ export {
|
|
|
4727
4727
|
attributeTranscriptUsageByRun,
|
|
4728
4728
|
KANBAN_CHECK_COMMAND
|
|
4729
4729
|
};
|
|
4730
|
-
//# sourceMappingURL=chunk-
|
|
4730
|
+
//# sourceMappingURL=chunk-TDMOEMDM.js.map
|